mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-12-01 06:21:18 +01:00
c27bfd92b7
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)
9 lines
204 B
Plaintext
9 lines
204 B
Plaintext
#
|
|
# This file is managed by Salt! Do not edit by hand!
|
|
#
|
|
{%- set engines = salt['pillar.get']('salt:minion:engines') -%}
|
|
{%- if engines %}
|
|
engines:
|
|
{{ engines | yaml(False) | indent(2) }}
|
|
{%- endif -%}
|