20 lines
376 B
YAML
20 lines
376 B
YAML
---
|
|
- name: Reload network
|
|
community.openwrt.nohup:
|
|
command: /etc/init.d/network reload
|
|
ignore_unreachable: true
|
|
|
|
- name: Reload firewall
|
|
community.openwrt.service:
|
|
name: firewall
|
|
state: restarted
|
|
|
|
- name: Reload wireless
|
|
community.openwrt.command:
|
|
cmd: wifi reload
|
|
|
|
- name: Reload bird
|
|
community.openwrt.service:
|
|
name: bird
|
|
state: restarted
|