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:
parent
cd43b25553
commit
0ce9d700b2
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue