Saltstack Official Salt Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reactor.conf 558B

1234567891011121314151617
  1. #
  2. # This file is managed by Salt! Do not edit by hand!
  3. #
  4. {# The parameter reactor is kept for backward compatibility -#}
  5. {%- set reactors = salt['pillar.get']('salt:reactor', []) + salt['pillar.get']('salt:reactors', []) + salt['pillar.get']('salt:master:reactors', []) -%}
  6. {%- if reactors %}
  7. reactor:
  8. {%- for reactor in reactors %}
  9. {%- for event_tag, reactor_files in reactor.items() %}
  10. - '{{ event_tag }}':
  11. {%- for reactor_file in reactor_files %}
  12. - {{ reactor_file }}
  13. {%- endfor %}
  14. {%- endfor %}
  15. {% endfor -%}
  16. {%- endif -%}