make the configuration of engines specific to master or minion
the engines are now configured using the following pillars: * salt.master.engines * salt.minion.engines instead of a global salt.engines pillar. Note: the pillar.example provided seems to assume this behaviour. (the pillar is salt.master.engines.slack and not salt.engines.slack)
This commit is contained in:
parent
5e9c937931
commit
c27bfd92b7
@ -1,7 +1,7 @@
|
||||
#
|
||||
# This file is managed by Salt! Do not edit by hand!
|
||||
#
|
||||
{%- set engines = salt['pillar.get']('salt:engines') -%}
|
||||
{%- set engines = salt['pillar.get']('salt:master:engines') -%}
|
||||
{%- if engines %}
|
||||
engines:
|
||||
{{ engines | yaml(False) | indent(2) }}
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# This file is managed by Salt! Do not edit by hand!
|
||||
#
|
||||
{%- set engines = salt['pillar.get']('salt:engines') -%}
|
||||
{%- set engines = salt['pillar.get']('salt:minion:engines') -%}
|
||||
{%- if engines %}
|
||||
engines:
|
||||
{{ engines | yaml(False) | indent(2) }}
|
||||
|
Loading…
Reference in New Issue
Block a user