bird/handlers/main.yml

20 lines
343 B
YAML
Raw Normal View History

2021-10-25 09:53:52 +00:00
---
2021-10-25 12:26:23 +00:00
- name: Restart BIRD
2021-10-25 09:53:52 +00:00
systemd:
name: bird
state: restarted
daemon_reload: yes
2021-10-25 12:26:23 +00:00
- name: Reload BIRD
systemd:
name: bird
state: restarted
daemon_reload: yes
- name: Restart loopback
2021-10-25 12:58:37 +00:00
shell: |
ifdown lo ; ifup lo
2021-10-25 11:55:25 +00:00
2021-10-26 21:33:38 +00:00
- name: Reload dummy interface with nmcli
command: nmcli conn up {{ bird_network_nm_iface }}