10 lines
242 B
YAML
10 lines
242 B
YAML
# vim: ft=yaml.ansible
|
|
# code: language=ansible
|
|
---
|
|
- name: Create subfolder for Monero blockchain
|
|
ansible.builtin.file:
|
|
name: "{{ apps_vars.monerod.volume }}/blockchain"
|
|
owner: '1000'
|
|
mode: u=rwx,g=rx,o=rx
|
|
state: directory
|