From 1277f422c85bbe9b3272060252cab04e8cc8ac65 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 7 May 2018 10:53:36 +0300 Subject: [PATCH] Add playbook for configuring Tor relays Utilizes the ansible-relayor role developed by nusenu. See: https://github.com/nusenu/ansible-relayor --- site.yml | 1 + tor-relay.yml | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 tor-relay.yml diff --git a/site.yml b/site.yml index 311dc89..03d4b86 100644 --- a/site.yml +++ b/site.yml @@ -1,6 +1,7 @@ --- # file: site.yml +- import_playbook: tor-relay.yml - import_playbook: web.yml # vim: set sw=2 ts=2: diff --git a/tor-relay.yml b/tor-relay.yml new file mode 100644 index 0000000..2d77fc7 --- /dev/null +++ b/tor-relay.yml @@ -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: