mirror of
https://github.com/itdoginfo/ansible-openwrt-hirkn.git
synced 2025-12-11 17:44:29 +05:00
26 lines
467 B
YAML
26 lines
467 B
YAML
---
|
|
- name: Restart network
|
|
service:
|
|
name: network
|
|
state: restarted
|
|
|
|
- name: Restart firewall
|
|
service:
|
|
name: firewall
|
|
state: restarted
|
|
|
|
- name: Run getdomains script
|
|
service:
|
|
name: getdomains
|
|
state: restarted
|
|
|
|
- name: Restart dnscrypt-proxy
|
|
service:
|
|
name: dnscrypt-proxy
|
|
state: restarted
|
|
enabled: yes
|
|
|
|
- name: Restart dnsmasq
|
|
service:
|
|
name: dnsmasq
|
|
state: restarted |