New version of salt-formula from Saltstack
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_reactor.conf 339B

12345678910111213
  1. {% from "salt/map.jinja" import master with context %}
  2. {%- if master.reactor_worker_threads is defined %}
  3. reactor_worker_threads: {{ master.reactor_worker_threads }}
  4. {%- endif %}
  5. reactor:
  6. {%- for event, reactors in master.reactor.items() %}
  7. - {{ event }}:
  8. {%- for reactor in reactors %}
  9. - {{ reactor }}
  10. {%- endfor %}
  11. {%- endfor %}