bird/handlers/main.yml
2021-10-27 00:33:38 +03:00

20 lines
343 B
YAML

---
- name: Restart BIRD
systemd:
name: bird
state: restarted
daemon_reload: yes
- name: Reload BIRD
systemd:
name: bird
state: restarted
daemon_reload: yes
- name: Restart loopback
shell: |
ifdown lo ; ifup lo
- name: Reload dummy interface with nmcli
command: nmcli conn up {{ bird_network_nm_iface }}