bird/tasks/RedHat/7.yaml

21 lines
298 B
YAML
Raw Normal View History

2021-10-25 11:24:40 +00:00
---
2021-10-25 12:26:23 +00:00
- name: Install BIRD
2021-10-25 11:24:40 +00:00
package:
name: bird2
state: present
2021-10-25 12:54:01 +00:00
- name: Add BIRD config
template:
src: bird.conf.j2
dest: /etc/bird.conf
notify:
2021-10-26 21:33:38 +00:00
- Reload BIRD
2021-10-25 12:54:01 +00:00
2021-10-25 12:26:23 +00:00
- name: Start BIRD service
2021-10-25 11:24:40 +00:00
systemd:
name: bird
state: started
enabled: yes
daemon_reload: yes
2021-10-26 21:33:38 +00:00