From d645bf096602ee4b89468b2501117dac29dfcff6 Mon Sep 17 00:00:00 2001 From: "Stefan G. Weichinger" Date: Sat, 9 Jul 2016 14:47:55 +0200 Subject: [PATCH] Add basic info how to use ansible role for installation --- docs/content/install.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/content/install.md b/docs/content/install.md index 9c187b49a..7ee3387b4 100644 --- a/docs/content/install.md +++ b/docs/content/install.md @@ -37,3 +37,20 @@ linux binary downloaded files install example sudo mkdir -p /usr/local/share/man/man1 sudo cp rclone.1 /usr/local/share/man/man1/ sudo mandb + +Installation with Ansible +------- + +This can be done with [Stefan Weichinger's ansible +role](https://github.com/stefangweichinger/ansible-rclone). + +Instructions + + 1. `git clone https://github.com/stefangweichinger/ansible-rclone.git` into your local roles-directory + 2. add the role to the hosts you want rclone installed to: + +``` + - hosts: rclone-hosts + roles: + - rclone +```