From 3b4e4bdbc1a20c7777c9e0f878bc1e31944a3f76 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Sun, 30 Apr 2023 18:37:46 +0200 Subject: [PATCH] Repair BookStack quoting Quoting filter did not work together with the manual quotes. Signed-off-by: Georg Pfuetzenreuter --- salt/profile/bookstack/init.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/profile/bookstack/init.sls b/salt/profile/bookstack/init.sls index 05f07b6..8323ce2 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] ~ "'" | quote %} + {%- set value = "\"'" ~ mypillar[option] ~ "'\"" %} {%- endif %} {{ option | upper }}: {{ value }} {%- endif -%}