diff --git a/tasks/main.yml b/tasks/main.yml
index f152ff893ce8559be9aa98a2f8d08f4b7d379efe..b9000f4e1d973099490704b3a7151639ccd51467 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -7,27 +7,27 @@
 
 - block:
 
-  - include: prepare.yml
+  - import_tasks: prepare.yml
 
-  - include: install.yml
+  - import_tasks: install.yml
 
-  - include: configure.yml
+  - import_tasks: configure.yml
 
-  - include: apache.yml
+  - import_tasks: apache.yml
     when: groups['webserver'] is defined and inventory_hostname in groups['webserver']
 
-  - include: elasticsearch.yml
+  - import_tasks: elasticsearch.yml
     when: groups['logserver'] is defined and inventory_hostname in groups['logserver']
 
-  - include: haproxy.yml
+  - import_tasks: haproxy.yml
     when: groups['proxyserver'] is defined and inventory_hostname in groups['proxyserver']
 
-  - include: mysql.yml
+  - import_tasks: mysql.yml
     when: groups['dbserver-mysql'] is defined and inventory_hostname in groups['dbserver-mysql']
 
-  - include: silent.yml
+  - import_tasks: silent.yml
 
-  - include: varnish.yml
+  - import_tasks: varnish.yml
     when: groups['varnishserver'] is defined and inventory_hostname in groups['varnishserver']
 
   when: '"netdata" not in excluded_roles'