bird/tasks/RedHat/7.yaml

27 lines
445 B
YAML

---
- name: Install BIRD
package:
name: bird2
state: present
- name: Add BIRD config
template:
src: bird.conf.j2
dest: /etc/bird.conf
notify:
- reload bird
- name: Update ifcfg-lo config
template:
src: ifcfg-lo.j2
dest: /etc/sysconfig/network-scripts/ifcfg-lo
notify:
- Restart loopback
- name: Start BIRD service
systemd:
name: bird
state: started
enabled: yes
daemon_reload: yes