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

16 lines
290 B
YAML

---
- name: Install Tor (Archlinux)
- install:
become: true
pacman:
name:
- torbrowser-launcher
when: ansible_distribution == 'Archlinux'
- name: Install Tor (Debian)
become: true
apt:
name:
- torbrowser-launcher
when: ansible_distribution == 'Debian'