We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6057ca7 commit fabd837Copy full SHA for fabd837
mysql/files/server.cnf
@@ -33,8 +33,14 @@
33
{% elif mvalue == "SETONPLEASE" %}
34
{{ mparam }}{{ '='|indent(indents, true) }} ON
35
{%- else -%}
36
+{%- if mvalue is list -%}
37
+{%- for value in mvalue %}
38
+{{ mparam }}{{ '='|indent(indents, true) }} {{ value }}
39
+{%- endfor -%}
40
+{%- else -%}
41
{{ mparam }}{{ '='|indent(indents, true) }} {{ mvalue }}
42
{%- endif -%}
43
+{%- endif -%}
44
{%- endfor -%}
45
46
{%- endfor %}
0 commit comments