Configure stateless apps for new storage
Some checks failed
Linting / YAML Lint (push) Failing after 9s
Linting / Ansible Lint (push) Successful in 18s

This commit is contained in:
2025-12-07 17:40:32 +03:00
parent b08f681c92
commit af289f1e28
5 changed files with 29 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
vars:
app_name: "authelia"
app_user: "{{ app_name }}"
base_dir: "/home/{{ app_user }}"
base_dir: "{{ (application_dir, app_name) | path_join }}"
config_dir: "{{ (base_dir, 'config') | path_join }}"
tasks:
@@ -29,6 +29,7 @@
group: "{{ app_user }}"
mode: "0700"
loop:
- "{{ base_dir }}"
- "{{ config_dir }}"
- name: "Copy users file"