21 lines
454 B
YAML
21 lines
454 B
YAML
---
|
|
- name: check bird status
|
|
service_facts:
|
|
listen: 'reload bird'
|
|
|
|
- name: reload bird
|
|
systemd:
|
|
name: bird
|
|
state: reloaded
|
|
when: not ansible_check_mode and ansible_facts.services['bird']['state'] == 'running'
|
|
|
|
- name: check bird6 status
|
|
service_facts:
|
|
listen: 'reload bird6'
|
|
|
|
- name: reload bird6
|
|
systemd:
|
|
name: bird6
|
|
state: reloaded
|
|
when: not ansible_check_mode and ansible_facts.services['bird6']['state'] == 'running'
|