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