diff --git a/tasks/main.yml b/tasks/main.yml index 73cb870905212958cd119ef2797c67bed48ead93..9f30b0fb5c86c0d36e96711ed140a5c435872b67 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -8,17 +8,17 @@ - block: - name: "Reset all hosts" - include: reset.yml + include_tasks: reset.yml with_items: '{{ groups.all }}' loop_control: loop_var: hostname when: hostname != "localhost" and inventory_hostname != "localhost" - name: "Tunnel keys" - include: tunnel_keys.yml + include_tasks: tunnel_keys.yml - name: "User keys" - include: user_keys.yml + include_tasks: user_keys.yml with_flattened: - '{{ admins }}' - '{{ jailusers }}'