Skip to content
Snippets Groups Projects
Commit 4206b488 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#72 Replace include_tasks with import_tasks

parent 3d8d4b7b
No related branches found
No related tags found
No related merge requests found
......@@ -7,27 +7,27 @@
- block:
- include_tasks: prepare.yml
- import_tasks: prepare.yml
- include_tasks: install.yml
- import_tasks: install.yml
- include_tasks: configure.yml
- import_tasks: configure.yml
- include_tasks: apache.yml
- import_tasks: apache.yml
when: groups['webserver'] is defined and inventory_hostname in groups['webserver']
- include_tasks: elasticsearch.yml
- import_tasks: elasticsearch.yml
when: groups['logserver'] is defined and inventory_hostname in groups['logserver']
- include_tasks: haproxy.yml
- import_tasks: haproxy.yml
when: groups['proxyserver'] is defined and inventory_hostname in groups['proxyserver']
- include_tasks: mysql.yml
- import_tasks: mysql.yml
when: groups['dbserver-mysql'] is defined and inventory_hostname in groups['dbserver-mysql']
- include_tasks: silent.yml
- import_tasks: silent.yml
- include_tasks: varnish.yml
- import_tasks: varnish.yml
when: groups['varnishserver'] is defined and inventory_hostname in groups['varnishserver']
when: '"netdata" not in excluded_roles'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment