diff --git a/tasks/main.yml b/tasks/main.yml
index 5dfc00e64efbe1837032489912fc517065f8a367..ba2d008bcd3b4cf3256ebfc08e0cc10f6b258e2a 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -9,11 +9,16 @@
 
 - block:
 
-    - import_tasks: install.yml
-    - import_tasks: configure.yml
+    - name: Import install
+      import_tasks: install.yml
+
+    - name: Import configure
+      import_tasks: configure.yml
       tags:
         - Config
-    - import_tasks: blacklists.yml
+
+    - name: Import blacklist
+      import_tasks: blacklists.yml
       tags:
         - Config
         - Blacklists
@@ -39,7 +44,8 @@
     - Certs
   when: proxy_active|default(true) and (not excluded_roles or "letsencrypt" not in excluded_roles)
 
-- import_tasks: proxypool.yml
+- name: Import proxypool
+  import_tasks: proxypool.yml
   when: not excluded_roles or "letsencrypt" not in excluded_roles
   tags:
     - Certs