ansible-ffrgb/roles/bird/tasks/main.yml

15 lines
254 B
YAML
Raw Normal View History

2018-01-23 18:45:11 +01:00
---
- name: Install bird
apt: package={{ item }}
with_items:
- bird
- bird6
- name: Configure bird
template: src=bird.conf.j2 dest=/etc/bird/bird.conf
notify: Restart bird
- name: Enable bird
service: name=bird state=started enabled=yes