2014-02-14 00:28:29 +01:00
|
|
|
- hosts: testhost
|
|
|
|
gather_facts: True
|
2014-03-14 18:04:25 +01:00
|
|
|
roles:
|
2014-12-03 19:45:54 +01:00
|
|
|
# In destructive because it creates and removes a user
|
2016-10-13 18:09:25 +02:00
|
|
|
- { role: become, tags: test_become}
|
|
|
|
- { role: service, tags: [test_service, needs_privileged] }
|
|
|
|
- { role: pip, tags: test_pip }
|
|
|
|
- { role: gem, tags: test_gem }
|
|
|
|
- { role: yum, tags: test_yum }
|
2016-10-31 18:38:31 +01:00
|
|
|
- { role: dnf, tags: test_dnf }
|
2016-10-13 18:09:25 +02:00
|
|
|
- { role: apt, tags: test_apt }
|
|
|
|
- { role: apt_repository, tags: [test_apt_repository, test_apt_key] }
|
|
|
|
- { role: postgresql, tags: [test_postgresql, test_postgresql_db, test_postgresql_privs, test_postgresql_user, needs_privileged] }
|
|
|
|
- { role: mysql_db, tags: test_mysql_db}
|
|
|
|
- { role: mysql_user, tags: test_mysql_user}
|
|
|
|
- { role: mysql_variables, tags: test_mysql_variables}
|
|
|
|
- { role: docker, tags: test_docker }
|
|
|
|
- { role: zypper, tags: test_zypper}
|
|
|
|
- { role: zypper_repository, tags: test_zypper_repository}
|
|
|
|
- { role: uri, tags: test_uri }
|
|
|
|
- { role: get_url, tags: test_get_url }
|
|
|
|
- { role: apache2_module, tags: test_apache2_module }
|
2016-09-29 19:46:34 +02:00
|
|
|
# This removes ~/.ssh/known_hosts and /etc/ssh/known_hosts
|
2016-10-13 18:09:25 +02:00
|
|
|
- { role: git, tags: test_git }
|
2017-01-04 09:22:32 +01:00
|
|
|
- { role: locale_gen, tags: test_locale_gen }
|