ansible-base/roles/sqlite-for-hedgedoc/tasks/main.json

21 lines
412 B
JSON
Raw Normal View History

2024-03-20 00:06:17 +01:00
[
{
"name": "directory",
"become": true,
"ansible.builtin.file": {
"state": "directory",
2025-10-08 11:32:28 +02:00
"path": "{{cfg_sqlite_for_hedgedoc.path | dirname}}",
"owner": "{{cfg_sqlite_for_hedgedoc.user_name}}"
2024-03-20 00:06:17 +01:00
}
},
{
"name": "file",
"become": true,
"ansible.builtin.file": {
"state": "touch",
2025-10-08 11:32:28 +02:00
"path": "{{cfg_sqlite_for_hedgedoc.path}}",
"owner": "{{cfg_sqlite_for_hedgedoc.user_name}}"
2024-03-20 00:06:17 +01:00
}
}
]