mirror of
https://gitea.0xace.cc/ansible-galaxy/bird.git
synced 2024-11-24 23:56:38 +00:00
20 lines
343 B
YAML
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 }}
|