Saltstack Official OpenSSH 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.

15 lines
333B

  1. {% from "openssh/map.jinja" import openssh with context %}
  2. include:
  3. - openssh
  4. sshd_banner:
  5. file.managed:
  6. - name: {{ openssh.banner }}
  7. {% if openssh.banner_string is defined %}
  8. - contents: {{ openssh.banner_string | yaml }}
  9. {% else %}
  10. - source: {{ openssh.banner_src }}
  11. - template: jinja
  12. {% endif %}