diff options
author | Georg Pfuetzenreuter | 2023-04-30 18:57:03 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-04-30 18:57:03 +0200 |
commit | 985b401aaa2389e8539421fec12dd939909d39a6 (patch) | |
tree | 74cbf5f911e9e556c1d2390480075276a15fb801 /salt/profile/bookstack/init.sls | |
parent | 65af33d4fb071ab08d2869e1b7468480d398ccb4 (diff) | |
download | salt-985b401aaa2389e8539421fec12dd939909d39a6.tar.gz salt-985b401aaa2389e8539421fec12dd939909d39a6.tar.bz2 salt-985b401aaa2389e8539421fec12dd939909d39a6.zip |
Repair BookStack quoting
Re-order ending quote.
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'salt/profile/bookstack/init.sls')
-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 -%} |