From 5a2ba1c9d62ad5d45cffc0cea7c244a28c17844e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 18 Dec 2024 12:07:40 +0100 Subject: [PATCH] loop over subtasks to install chill --- tasks/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 674c603..034f329 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,7 +2,8 @@ --- # install docker on the machine -- include_role: +- name: Install docker and docker compose plugin + ansible.builtin.include_role: name: geerlingguy.docker vars: docker_edition: ce @@ -12,4 +13,7 @@ docker_service_enabled: true docker_install_compose_plugin: true docker_add_repo: true - \ No newline at end of file + +- name: Install individual chill + ansible.builtin.include_tasks: chill/main.yml + with_items: "{{ chills }}"