Saltstack Official Salt Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. #
  2. # This file is managed by Salt! Do not edit by hand!
  3. #
  4. {%- set roster = salt['pillar.get']('salt:ssh_roster') -%}
  5. {%- if roster %}
  6. {%- for host, options in roster.items() %}
  7. {{ host }}:
  8. {%- for k, v in options.items() %}
  9. {{ k }}: {{ v }}
  10. {%- endfor %}
  11. {% endfor %}
  12. {%- endif -%}