toansible: Add tor installation

This commit is contained in:
flyingscorpio@clevo 2022-02-22 08:27:00 +01:00
parent 463fdfee6a
commit 12998cb55e
3 changed files with 17 additions and 4 deletions

View file

@ -33,10 +33,6 @@ firefox:
- run:
- firefox $(sed -n '/^ http/p' firefox_addons.txt)
tor:
- install:
- torbrowser-launcher
terminator:
- install:
- terminator

View file

@ -6,3 +6,4 @@
- neovim
- ssh-agent
- pacman.conf
- tor

16
roles/tor/tasks/main.yml Normal file
View file

@ -0,0 +1,16 @@
---
- 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'