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.

13 lines
295B

  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 -%}