7 lines
121 B
YAML
7 lines
121 B
YAML
|
- name: Create folder structure
|
||
|
ansible.builtin.file:
|
||
|
path: "{{ item }}"
|
||
|
state: directory
|
||
|
loop:
|
||
|
- /opt/x
|