loop over subtasks to install chill

This commit is contained in:
Julien Fastré 2024-12-18 12:07:40 +01:00
parent b625aab3f2
commit 5a2ba1c9d6
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -2,7 +2,8 @@
--- ---
# install docker on the machine # install docker on the machine
- include_role: - name: Install docker and docker compose plugin
ansible.builtin.include_role:
name: geerlingguy.docker name: geerlingguy.docker
vars: vars:
docker_edition: ce docker_edition: ce
@ -13,3 +14,6 @@
docker_install_compose_plugin: true docker_install_compose_plugin: true
docker_add_repo: true docker_add_repo: true
- name: Install individual chill
ansible.builtin.include_tasks: chill/main.yml
with_items: "{{ chills }}"