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