Переглянути джерело

Merge pull request #518 from ze42/sorted_extra_options

fix: sort extra options in configuration
tags/v1.9.9
Niels Abspoel 3 роки тому
джерело
коміт
7d26191578
Аккаунт користувача з таким Email не знайдено
2 змінених файлів з 2 додано та 2 видалено
  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 Переглянути файл

{% 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 Переглянути файл

{% 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 }}:

Завантаження…
Відмінити
Зберегти