mirror of
https://gitea.0xace.cc/ansible-galaxy/bird.git
synced 2024-11-25 08:06:38 +00:00
20 lines
308 B
YAML
20 lines
308 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 lo0
|