diff options
author | Georg Pfuetzenreuter | 2023-04-30 19:00:05 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-04-30 19:00:05 +0200 |
commit | 21f8818a526be57d4da1fe573bf5ab9b4a5b5f1e (patch) | |
tree | 74cbf5f911e9e556c1d2390480075276a15fb801 /salt/profile/bookstack | |
parent | 65af33d4fb071ab08d2869e1b7468480d398ccb4 (diff) | |
parent | 985b401aaa2389e8539421fec12dd939909d39a6 (diff) | |
download | salt-21f8818a526be57d4da1fe573bf5ab9b4a5b5f1e.tar.gz salt-21f8818a526be57d4da1fe573bf5ab9b4a5b5f1e.tar.bz2 salt-21f8818a526be57d4da1fe573bf5ab9b4a5b5f1e.zip |
Merge pull request 'Repair BookStack quoting' (#53) from bookstack-quoting into production
Reviewed-on: https://git.com.de/LibertaCasa/salt/pulls/53
Diffstat (limited to 'salt/profile/bookstack')
-rw-r--r-- | salt/profile/bookstack/init.sls | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/salt/profile/bookstack/init.sls b/salt/profile/bookstack/init.sls index bc63a03..ea75ec4 100644 --- a/salt/profile/bookstack/init.sls +++ b/salt/profile/bookstack/init.sls @@ -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] ~ "\"'" %} + {%- set value = "\"'" ~ mypillar[option] ~ "'\"" %} {%- endif %} {{ option | upper }}: {{ value }} {%- endif -%} |