main.yml 230 B

123456789101112
  1. - include_tasks: mysql.yml
  2. when: with_mysql|bool or with_mariadb|bool
  3. tags:
  4. - 'mysql'
  5. - 'sql'
  6. - include_tasks: postgresql.yml
  7. when: with_postgresql|bool
  8. tags:
  9. - 'postgresql'
  10. - 'sql'
  11. # vim: ft=yaml.ansible