This commit is contained in:
Christian Fraß 2025-10-08 11:32:28 +02:00
parent 1ebe98f23e
commit 01813a835d

View file

@ -4,8 +4,8 @@
"become": true, "become": true,
"ansible.builtin.file": { "ansible.builtin.file": {
"state": "directory", "state": "directory",
"path": "{{cfg_sqlite_for_hedgedocpath | dirname}}", "path": "{{cfg_sqlite_for_hedgedoc.path | dirname}}",
"owner": "{{var_hedgedoc_user_name}}" "owner": "{{cfg_sqlite_for_hedgedoc.user_name}}"
} }
}, },
{ {
@ -13,8 +13,8 @@
"become": true, "become": true,
"ansible.builtin.file": { "ansible.builtin.file": {
"state": "touch", "state": "touch",
"path": "{{cfg_sqlite_for_hedgedocpath}}", "path": "{{cfg_sqlite_for_hedgedoc.path}}",
"owner": "{{cfg_sqlite_for_hedgedocuser_name}}" "owner": "{{cfg_sqlite_for_hedgedoc.user_name}}"
} }
} }
] ]