Explorar el Código

Add 'return' to reserved_keys in minion config

This prevents the `return` key being duplicated in the minion config by L1205
tags/v0.58.4
Ryan Walder hace 5 años
padre
commit
042e9baad3
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      salt/files/minion.d/f_defaults.conf

+ 1
- 1
salt/files/minion.d/f_defaults.conf Ver fichero

@@ -1,7 +1,7 @@
# This file managed by Salt, do not edit by hand!!
# Based on salt version 2016.11 default config
#
{% set reserved_keys = ['master', 'minion', 'cloud', 'salt_cloud_certs', 'engines', 'beacons', 'reactors'] -%}
{% set reserved_keys = ['master', 'minion', 'cloud', 'salt_cloud_certs', 'engines', 'beacons', 'reactors', 'return'] -%}
{% set cfg_salt = pillar.get('salt', {}) -%}
{% set cfg_minion = cfg_salt.get('minion', {}) -%}
{% set default_keys = [] -%}

Cargando…
Cancelar
Guardar