setup-cockpit/roles/tor/tasks/main.yml

14 lines
326 B
YAML

---
- name: Install Tor (Archlinux)
become: true
community.general.pacman:
name:
- torbrowser-launcher
when: ansible_facts['distribution'] == 'Archlinux'
- name: Install Tor (Debian)
become: true
ansible.builtin.apt:
name:
- torbrowser-launcher
when: ansible_facts['distribution'] == 'Debian'