mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
612 B
YAML
17 lines
612 B
YAML
7 years ago
|
---
|
||
|
# setup stuff not testing zabbix_host
|
||
|
- include: zabbix_host_setup.yml
|
||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|
||
|
|
||
|
# zabbix_host module tests
|
||
|
- include: zabbix_host_tests.yml
|
||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|
||
|
|
||
|
# documentation example tests
|
||
|
- include: zabbix_host_doc.yml
|
||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|
||
|
|
||
|
# tear down stuff set up earlier
|
||
|
- include: zabbix_host_teardown.yml
|
||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|