diff options
author | Georg Pfuetzenreuter | 2023-04-30 18:34:12 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-04-30 18:34:12 +0200 |
commit | 8d9af70941de7c4856a7187b58af10c673c33815 (patch) | |
tree | b9cd1a911041c8d73324b523ac202df649ebad46 /salt/profile | |
parent | 600a73a984f5452e840c1c69db2b91763d760734 (diff) | |
parent | ef0a931157da5823c4eb54da41c9d60f4d582eab (diff) | |
download | salt-8d9af70941de7c4856a7187b58af10c673c33815.tar.gz salt-8d9af70941de7c4856a7187b58af10c673c33815.tar.bz2 salt-8d9af70941de7c4856a7187b58af10c673c33815.zip |
Merge pull request 'BookStack fixups' (#51) from bookstack-fixup into production
Reviewed-on: https://git.com.de/LibertaCasa/salt/pulls/51
Diffstat (limited to 'salt/profile')
-rw-r--r-- | salt/profile/bookstack/init.sls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/salt/profile/bookstack/init.sls b/salt/profile/bookstack/init.sls index 3dc5a36..05f07b6 100644 --- a/salt/profile/bookstack/init.sls +++ b/salt/profile/bookstack/init.sls @@ -10,7 +10,7 @@ bookstack_permissions: file.managed: - mode: '0640' - user: root - - group: wwwrun + - group: www - names: - {{ configfile }} @@ -27,7 +27,7 @@ bookstack_permissions: {%- if mypillar[option] is string and mypillar[option].startswith('$') or mypillar[option] is number %} {%- set value = mypillar[option] %} {%- else %} - {%- set value = mypillar[option] | quote %} + {%- set value = "'" ~ mypillar[option] ~ "'" | quote %} {%- endif %} {{ option | upper }}: {{ value }} {%- endif -%} |