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

Merge pull request #387 from M2Mobi/extra_config_mapping

Fix support for extra config values as mappings
tags/v0.57.0
Niels Abspoel 6 роки тому
джерело
коміт
b13bc6d461
Аккаунт користувача з таким Email не знайдено
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      salt/files/minion.d/f_defaults.conf

+ 1
- 1
salt/files/minion.d/f_defaults.conf Переглянути файл

@@ -1255,7 +1255,7 @@ alternative.mongo.{{ name }}: {{ value }}

{%- for configname in cfg_minion %}
{%- if configname not in reserved_keys and configname not in default_keys %}
{%- if cfg_minion[configname] is iterable 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 }}:
{%- for item in cfg_minion[configname] %}
- {{ item }}

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