ansible-base/roles/sqlite-for-hedgedoc/tasks/main.json
Christian Fraß 01813a835d [int]
2025-10-08 11:32:28 +02:00

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}}"
}
}
]