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

21 lines
398 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:31:00 +02:00
"path": "{{cfg_sqlite_for_hedgedocpath | dirname}}",
2024-03-20 00:06:17 +01:00
"owner": "{{var_hedgedoc_user_name}}"
}
},
{
"name": "file",
"become": true,
"ansible.builtin.file": {
"state": "touch",
2025-10-08 11:31:00 +02:00
"path": "{{cfg_sqlite_for_hedgedocpath}}",
"owner": "{{cfg_sqlite_for_hedgedocuser_name}}"
2024-03-20 00:06:17 +01:00
}
}
]