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