Add playbook for configuring Tor relays

Utilizes the ansible-relayor role developed by nusenu.

See: https://github.com/nusenu/ansible-relayor
This commit is contained in:
Alan Orth 2018-05-07 10:53:36 +03:00
parent f9ea7d30f5
commit 1277f422c8
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 11 additions and 0 deletions

View File

@ -1,6 +1,7 @@
---
# file: site.yml
- import_playbook: tor-relay.yml
- import_playbook: web.yml
# vim: set sw=2 ts=2:

10
tor-relay.yml Normal file
View File

@ -0,0 +1,10 @@
---
# file: tor-relay.yml
- name: Configure tor relays
hosts: relays
remote_user: provisioning
roles:
- nusenu.relayor # must be installed, see README.md
# vim: set sw=2 ts=2: