21 lines
401 B
JSON
21 lines
401 B
JSON
|
[
|
||
|
{
|
||
|
"name": "directory",
|
||
|
"become": true,
|
||
|
"ansible.builtin.file": {
|
||
|
"state": "directory",
|
||
|
"path": "{{var_sqlite_for_hedgedoc_path | dirname}}",
|
||
|
"owner": "{{var_hedgedoc_user_name}}"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "file",
|
||
|
"become": true,
|
||
|
"ansible.builtin.file": {
|
||
|
"state": "touch",
|
||
|
"path": "{{var_sqlite_for_hedgedoc_path}}",
|
||
|
"owner": "{{var_sqlite_for_hedgedoc_user_name}}"
|
||
|
}
|
||
|
}
|
||
|
]
|