fix: sort extra options in configurationtags/v1.9.9
@@ -1825,7 +1825,7 @@ alternative.mongo.{{ name }}: {{ value }} | |||
{% endif %} | |||
{%- endif %} | |||
{%- for configname in cfg_master %} | |||
{%- for configname in cfg_master|sort %} | |||
{%- if configname not in reserved_keys and configname not in default_keys %} | |||
{{ configname }}: | |||
{{ cfg_master[configname]| yaml(False) | indent(2) }} |
@@ -1251,7 +1251,7 @@ alternative.mongo.{{ name }}: {{ value }} | |||
{% endif %} | |||
{%- endif %} | |||
{%- for configname in cfg_minion %} | |||
{%- for configname in cfg_minion|sort %} | |||
{%- if configname not in reserved_keys and configname not in default_keys %} | |||
{%- if cfg_minion[configname] is iterable and cfg_minion[configname] is not mapping and cfg_minion[configname] is not string %} | |||
{{ configname }}: |