0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2025-02-08 00:58:08 +01:00
openssh-formula/openssh/banner.sls
2017-07-27 19:55:34 -03:00

16 lines
336 B
Plaintext

{% from "openssh/map.jinja" import openssh with context %}
include:
- openssh
sshd_banner:
file.managed:
- name: {{ openssh.banner }}
{% if openssh.banner_string is defined %}
- contents: |
{{ openssh.banner_string }}
{% else %}
- source: {{ openssh.banner_src }}
- template: jinja
{% endif %}