roles: Fix umask to be string type

Should not be integer which it will be cast to if given without quotes.
This commit is contained in:
Marty Oehme 2025-07-17 17:44:25 +02:00
parent cd43b25553
commit 0ce9d700b2
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ arrstack_homarr_subdomain: "{{ domain | default('example.org') }}"
arrstack_tz: "{{ timezone | default('America/Chicago') }}"
arrstack_puid: "{{ puid | default(1000) }}"
arrstack_pgid: "{{ pgid | default(100) }}"
arrstack_umask_set: "{{ umask_set | default(022) }}"
arrstack_umask_set: "{{ umask_set | default('022') }}"
arrstack_env_dir: /opt/arrstack
arrstack_serve_dir: /srv

View file

@ -4,7 +4,7 @@ stack_grocy_subdomain: "house.{{ domain | default('example.org') }}"
stack_grocy_tz: "{{ timezone | default('America/Chicago') }}"
stack_grocy_puid: "{{ puid | default(1000) }}"
stack_grocy_pgid: "{{ pgid | default(100) }}"
stack_grocy_umask_set: "{{ umask_set | default(022) }}"
stack_grocy_umask_set: "{{ umask_set | default('022') }}"
stack_grocy_env_dir: /opt/stack_grocy