From 035b7b014797a0c5dd0f7ef4d2adf063270072cb Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Mon, 14 Jul 2025 22:17:58 +0200 Subject: [PATCH] chore(ansible): move up snippet --- .../ansible/{tasks => }/use tasks from other files.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename snippets/ansible/{tasks => }/use tasks from other files.yml (68%) diff --git a/snippets/ansible/tasks/use tasks from other files.yml b/snippets/ansible/use tasks from other files.yml similarity index 68% rename from snippets/ansible/tasks/use tasks from other files.yml rename to snippets/ansible/use tasks from other files.yml index 3635d53..2d587bb 100644 --- a/snippets/ansible/tasks/use tasks from other files.yml +++ b/snippets/ansible/use tasks from other files.yml @@ -8,11 +8,11 @@ connection: local gather_facts: false tasks: - - ansible.builtin.import_tasks: debug.yml + - ansible.builtin.import_tasks: tasks/debug.yml - ansible.builtin.import_tasks: - file: control flows.yml - # - ansible.builtin.include_tasks: manipulate data.yml + file: tasks/control flows.yml + - ansible.builtin.include_tasks: tasks/manipulate data.yml - ansible.builtin.include_tasks: - file: manipulate data.yml + file: tasks/manipulate data.yml apply: tags: data_manipulation