mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-30 09:23:05 +02:00
* Move DNS adblocking to dnscrypt-proxy * Update docs * remove unneeded variable dnscrypt_proxy_version * Update to the latest dnscrypt-proxy version * install.sh fix * spelling
17 lines
346 B
YAML
17 lines
346 B
YAML
---
|
|
- name: daemon reload
|
|
systemd:
|
|
daemon_reload: true
|
|
|
|
- name: restart dnscrypt-proxy
|
|
systemd:
|
|
name: dnscrypt-proxy
|
|
state: restarted
|
|
daemon_reload: true
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- name: restart dnscrypt-proxy
|
|
service:
|
|
name: dnscrypt-proxy
|
|
state: restarted
|
|
when: ansible_distribution == 'FreeBSD'
|