bird/tasks/RedHat/8.yaml

20 lines
295 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
package:
2021-10-25 11:24:40 +00:00
name: bird
state: present
2021-10-25 12:54:01 +00:00
- name: Add BIRD config
template:
src: bird.conf.j2
dest: /etc/bird.conf
notify:
- Reload BIRD
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