main.yml 215 B

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