bird/handlers/main.yml

20 lines
327 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
command: nmcli conn up {{ network_nm_iface }}