---
- name: "Forward proxy connections to Tor"
  lineinfile:
    path: "{{ privoxy_config_path }}"
    regex: "forward-socks5t / localhost"
    line: forward-socks5t / localhost:9050 .
  notify: restart privoxy

- name: "Enforce using USA exit node with Tor connections"
  blockinfile:
    path: "{{ torrc_path }}"
    marker: "# {mark} ANSIBLE MANAGED BLOCK FOR TOR SETTINGS"
    block: "{{ tor_settings }}"
  notify: restart tor
