Ansible_PUBLIC/roles/tor/tasks/debian_family.yml

24 lines
816 B
YAML
Raw Normal View History

2020-03-14 15:18:30 +01:00
#- name: Include variables
# include_vars:
# file: "../../../variables.yml"
#- name: Install docker prerequsistes
# apt:
# pkg:
# - squashfs-tools
- name: add tor repo in /etc/apt/sources.list.d/tor.list [1/2]
shell: echo "deb https://deb.torproject.org/torproject.org {{ ansible_distribution_release }} main" > /etc/apt/sources.list.d/tor.list
- name: add tor repo in /etc/apt/sources.list.d/tor.list [2/2]
shell: echo "deb-src https://deb.torproject.org/torproject.org {{ ansible_distribution_release }} main" >> /etc/apt/sources.list.d/tor.list
- name: Add tor repo key
shell: curl https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --import
- name: Install tor
apt:
pkg:
- tor