Add install instructions for ansible-relayor

There are several ways to install external roles, ie via ansible-galaxy,
git submodules, etc. I found that adding this role to a requirements.yml
file and adding instructions to the README.md is probably the best way.

Using ansible-galaxy actually had issues because the ansible-relayor git
repository has version tags that use mixed styles, like v0.3.3 and 0.1.0
without a v.
This commit is contained in:
Alan Orth 2018-05-07 10:54:40 +03:00
parent 1277f422c8
commit 42501acb74
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,10 @@ Once you've satisfied the the above assumptions, you can execute:
$ ansible-playbook web.yml $ ansible-playbook web.yml
If setting up Tor relays, you need to install the [ansible-relayor](https://github.com/nusenu/ansible-relayor) role:
$ ansible-galaxy install -r requirements.yml
## Todo ## Todo
- Update packages for Ubuntu 18.04 (mariadb, nginx, tarsnap currently using packages for 17.10 artful) - Update packages for Ubuntu 18.04 (mariadb, nginx, tarsnap currently using packages for 17.10 artful)

5
requirements.yml Normal file
View File

@ -0,0 +1,5 @@
- src: https://github.com/nusenu/ansible-relayor
name: nusenu.relayor
version: master
# vim: set sw=2 ts=2: