21 lines
412 B
JSON
21 lines
412 B
JSON
[
|
|
{
|
|
"name": "directory",
|
|
"become": true,
|
|
"ansible.builtin.file": {
|
|
"state": "directory",
|
|
"path": "{{cfg_sqlite_for_hedgedoc.path | dirname}}",
|
|
"owner": "{{cfg_sqlite_for_hedgedoc.user_name}}"
|
|
}
|
|
},
|
|
{
|
|
"name": "file",
|
|
"become": true,
|
|
"ansible.builtin.file": {
|
|
"state": "touch",
|
|
"path": "{{cfg_sqlite_for_hedgedoc.path}}",
|
|
"owner": "{{cfg_sqlite_for_hedgedoc.user_name}}"
|
|
}
|
|
}
|
|
]
|