From f3b8a3c4eceb9a89f376c432bee0ecdc8c6ed61d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Tue, 7 Oct 2025 16:30:10 +0200 Subject: [PATCH] [int] --- roles/authelia/tasks/main.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/authelia/tasks/main.json b/roles/authelia/tasks/main.json index 5aed8c7..834477c 100644 --- a/roles/authelia/tasks/main.json +++ b/roles/authelia/tasks/main.json @@ -109,7 +109,7 @@ "become": true, "ansible.builtin.file": { "state": "directory", - "path": "{{var_authelia_log_file_path | dirname}}" + "path": "{{cfg_authelia.log_file_path | dirname}}" } }, { @@ -120,7 +120,7 @@ "become": true, "ansible.builtin.file": { "state": "directory", - "path": "{{var_authelia_users_file_path | dirname}}" + "path": "{{cfg_authelia.users_file_path | dirname}}" } }, { @@ -128,7 +128,7 @@ "become": true, "ansible.builtin.template": { "src": "users.yml.j2", - "dest": "{{var_authelia_users_file_path}}", + "dest": "{{cfg_authelia.users_file_path}}", "force": false } },