From 910b8ddd9f15dd2c29b27e42a7466cd0715fcdd0 Mon Sep 17 00:00:00 2001 From: Malpractis <31232305+Malpractis@users.noreply.github.com> Date: Tue, 21 Jan 2020 08:49:01 +1100 Subject: [PATCH] update ansible installation instructions Ansible has their own PPA now. The existing instructions (tested on ubuntu 18.04) will result in ansible 2.5.2 being installed, whereas adding the PPA will result in the latest (2.9.3). --- docs/installation.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index 42a9e85c..bafb1019 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -11,6 +11,12 @@ You can run Ansible-NAS from the computer you plan to use for your NAS, or from 2. Install Ansible: + `sudo apt update` + + `sudo apt install software-properties-common` + + `sudo apt-add-repository --yes --update ppa:ansible/ansible` + `sudo apt install ansible` 3. Clone Ansible-NAS: @@ -27,4 +33,4 @@ You can run Ansible-NAS from the computer you plan to use for your NAS, or from 7. Install the dependent roles: `ansible-galaxy install -r requirements.yml` (you might need `sudo` to install Ansible roles). -8. Run the playbook - something like `ansible-playbook -i inventories/my-ansible-nas/inventory nas.yml -b -K` should do you nicely. \ No newline at end of file +8. Run the playbook - something like `ansible-playbook -i inventories/my-ansible-nas/inventory nas.yml -b -K` should do you nicely.