main.yml 768 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. # tasks file for ffdo.bird
  3. - name: Ensure bird include dirs exists
  4. file:
  5. dest: /etc/{{item}}
  6. state: directory
  7. with_items:
  8. - bird.d
  9. - bird6.d
  10. - name: Ensure bird routing daemon is installed
  11. apt: name=bird state=present
  12. - name: Create bird config dir
  13. file: name={{bird_config_dir}} state=directory
  14. - name: Install bird.conf
  15. when: bird_configure
  16. template: src=bird.conf.j2 dest={{bird_config_dir}}/bird.conf
  17. notify: Restart bird daemons
  18. - name: Install bird6.conf
  19. when: bird_configure
  20. template: src=bird6.conf.j2 dest={{bird_config_dir}}/bird6.conf
  21. notify: Restart bird daemons
  22. - name: Enable and start bird and bird6
  23. when: bird_configure
  24. service: name={{item}} state=started enabled=yes
  25. with_items:
  26. - bird
  27. - bird6