Browse Source

fix: sort extra options in configuration

Ensure extra options in generated configuration is sorted, to ensure stable
configuration.
tags/v1.9.9
Adrien "ze" Urban 3 years ago
parent
commit
89cdcec595
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      salt/files/master.d/f_defaults.conf
  2. +1
    -1
      salt/files/minion.d/f_defaults.conf

+ 1
- 1
salt/files/master.d/f_defaults.conf View File

{% endif %} {% endif %}
{%- 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 %} {%- if configname not in reserved_keys and configname not in default_keys %}
{{ configname }}: {{ configname }}:
{{ cfg_master[configname]| yaml(False) | indent(2) }} {{ cfg_master[configname]| yaml(False) | indent(2) }}

+ 1
- 1
salt/files/minion.d/f_defaults.conf View File

{% endif %} {% endif %}
{%- 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 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 %} {%- if cfg_minion[configname] is iterable and cfg_minion[configname] is not mapping and cfg_minion[configname] is not string %}
{{ configname }}: {{ configname }}:

Loading…
Cancel
Save