main.yml 279 B

1234567891011121314151617
  1. - include_tasks: apache2.yml
  2. when: with_apache2|bool
  3. tags:
  4. - 'web'
  5. - 'apache2'
  6. - include_tasks: nginx.yml
  7. when: with_nginx|bool
  8. tags:
  9. - 'web'
  10. - 'nginx'
  11. - include_tasks: php.yml
  12. when: with_php|bool
  13. tags:
  14. - 'web'
  15. - 'php'
  16. # vim: ft=yaml.ansible