From 01813a835d0d39f1d1a8de686c7ebd32cbb3ff58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Wed, 8 Oct 2025 11:32:28 +0200 Subject: [PATCH] [int] --- roles/sqlite-for-hedgedoc/tasks/main.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/sqlite-for-hedgedoc/tasks/main.json b/roles/sqlite-for-hedgedoc/tasks/main.json index e52c024..2af265b 100644 --- a/roles/sqlite-for-hedgedoc/tasks/main.json +++ b/roles/sqlite-for-hedgedoc/tasks/main.json @@ -4,8 +4,8 @@ "become": true, "ansible.builtin.file": { "state": "directory", - "path": "{{cfg_sqlite_for_hedgedocpath | dirname}}", - "owner": "{{var_hedgedoc_user_name}}" + "path": "{{cfg_sqlite_for_hedgedoc.path | dirname}}", + "owner": "{{cfg_sqlite_for_hedgedoc.user_name}}" } }, { @@ -13,8 +13,8 @@ "become": true, "ansible.builtin.file": { "state": "touch", - "path": "{{cfg_sqlite_for_hedgedocpath}}", - "owner": "{{cfg_sqlite_for_hedgedocuser_name}}" + "path": "{{cfg_sqlite_for_hedgedoc.path}}", + "owner": "{{cfg_sqlite_for_hedgedoc.user_name}}" } } ]