ansible-base/roles/sqlite-for-hedgedoc/tasks/main.json
Christian Fraß 1ebe98f23e [int]
2025-10-08 11:31:00 +02:00

21 lines
398 B
JSON

[
{
"name": "directory",
"become": true,
"ansible.builtin.file": {
"state": "directory",
"path": "{{cfg_sqlite_for_hedgedocpath | dirname}}",
"owner": "{{var_hedgedoc_user_name}}"
}
},
{
"name": "file",
"become": true,
"ansible.builtin.file": {
"state": "touch",
"path": "{{cfg_sqlite_for_hedgedocpath}}",
"owner": "{{cfg_sqlite_for_hedgedocuser_name}}"
}
}
]