12 lines
301 B
YAML
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 }}"
|