Packer.Images/ansible/roles/bootstrap/tasks/dependencies.yml

12 lines
301 B
YAML
Raw Normal View History

2022-06-24 21:44:10 +00:00
- 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 }}"