mg
7ac4a0eaf2
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#265 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
15 lines
312 B
YAML
15 lines
312 B
YAML
---
|
|
- name: install obsf packages
|
|
become: yes
|
|
ansible.builtin.package:
|
|
name:
|
|
- obfs4proxy
|
|
state: present
|
|
notify: restart tor
|
|
|
|
- name: templating torrc
|
|
become: yes
|
|
ansible.builtin.template:
|
|
src: "bridge_torrc"
|
|
dest: "/etc/tor/torrc"
|
|
notify: restart tor
|