Ver código fonte

add missing files

tags/v0.57.0
Niels Abspoel 8 anos atrás
pai
commit
13a6ecf8b9
2 arquivos alterados com 23 adições e 0 exclusões
  1. +8
    -0
      salt/files/minion.d/engine.conf
  2. +15
    -0
      salt/files/minion.d/reactor.conf

+ 8
- 0
salt/files/minion.d/engine.conf Ver arquivo

@@ -0,0 +1,8 @@
#
# This file is managed by Salt! Do not edit by hand!
#
{%- set engines = salt['pillar.get']('salt:engines') -%}
{%- if engines %}
engines:
{{ engines | yaml(False) | indent(2) }}
{%- endif -%}

+ 15
- 0
salt/files/minion.d/reactor.conf Ver arquivo

@@ -0,0 +1,15 @@
#
# This file is managed by Salt! Do not edit by hand!
#
{%- set reactors = salt['pillar.get']('salt:reactor') -%}
{%- if reactors %}
reactor:
{%- for reactor in reactors %}
{%- for event_tag, reactor_files in reactor.items() %}
- '{{ event_tag }}':
{%- for reactor_file in reactor_files %}
- {{ reactor_file }}
{%- endfor %}
{%- endfor %}
{% endfor -%}
{%- endif -%}

Carregando…
Cancelar
Salvar