forked from saltstack-formulas/openssh-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.sls
More file actions
20 lines (18 loc) · 660 Bytes
/
Copy pathbanner.sls
File metadata and controls
20 lines (18 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{%- set tplroot = tpldir.split('/')[0] %}
{%- from tplroot ~ "/map.jinja" import openssh with context %}
{%- from tplroot ~ "/libtofs.jinja" import files_switch %}
include:
- openssh
sshd_banner:
file.managed:
- name: {{ openssh.banner }}
{%- if openssh.banner_string is defined %}
- contents: {{ openssh.banner_string | yaml }}
{%- else %}
{#- Preserve backward compatibility using the `if` below #}
- source: {{ openssh.banner_src if '://' in openssh.banner_src
else files_switch( [openssh.banner_src],
'sshd_banner'
) }}
- template: jinja
{%- endif %}