Ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
277 B

---
dependencies:
- role: postgresql_server
when:
- mailman_db_engine == 'postgres'
- mailman_db_server in ['127.0.0.1','localhost']
- role: mysql_server
when:
- mailman_db_engine == 'mysql'
- mailman_db_server in ['127.0.0.1','localhost']