Repair PrivateBin config quoting
All checks were successful
ci/lysergic/push/pipeline Pipeline was successful

Ensure strings are quoted correctly.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2023-04-30 20:38:43 +02:00
parent edd16ff3a7
commit 942b71815e
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57

View File

@ -24,10 +24,10 @@ privatebin_clean:
- sections: - sections:
{%- macro conf(section, options) %} {%- macro conf(section, options) %}
{%- for option in options.keys() -%} {%- for option in options.keys() -%}
{%- if mypillar[section][option] is string and mypillar[section][option].startswith('$') or mypillar[section][option] is number %} {%- if ( mypillar[section][option] is string and mypillar[section][option].startswith('$') ) or mypillar[section][option] is number %}
{%- set value = mypillar[section][option] -%} {%- set value = mypillar[section][option] -%}
{%- else %} {%- else %}
{%- set value = mypillar[section][option] | quote -%} {%- set value = "\"'" ~ mypillar[section][option] ~ "'\"" -%}
{%- endif %} {%- endif %}
{{ option }}: {{ value }} {{ option }}: {{ value }}
{%- endfor -%} {%- endfor -%}