11 lines
260 B
YAML
11 lines
260 B
YAML
# vim: ft=yaml.ansible
|
|
# code: language=ansible
|
|
---
|
|
- name: Create subdirectory for monerod data
|
|
ansible.builtin.file:
|
|
path: "{{ apps_data_root }}/monerod/data/bitmonero"
|
|
owner: '1000'
|
|
group: '1000'
|
|
mode: u=rwx,g=rx,o=rx
|
|
state: directory
|