8 lines
249 B
YAML
8 lines
249 B
YAML
- name: Ensure the root data directory is present
|
|
ansible.builtin.file:
|
|
path: "{{ host_vol_root }}"
|
|
state: directory
|
|
- name: Ensure registry volume is present
|
|
ansible.builtin.file:
|
|
path: "{{ host_vol_root }}/ncr"
|
|
state: directory |