Packer.Images/ansible/roles/bootstrap/tasks/dependencies.yml
Danny Bessems 2bd0f8df0a
Some checks failed
continuous-integration/drone/push Build is failing
Initial build based on 22.04
2022-06-24 23:44:10 +02:00

12 lines
301 B
YAML

- name: Create folder structure
ansible.builtin.file:
path: "{{ item }}"
state: directory
loop:
- /opt/x
- name: Install ansible-galaxy collection
ansible.builtin.shell:
cmd: "ansible-galaxy collection install {{ item }}"
loop: "{{ dependencies.ansible_galaxy_collections }}"