浏览代码

Allow to config banner in pillar

master
Andres Montalban 7 年前
父节点
当前提交
500c915c33
共有 2 个文件被更改,包括 9 次插入0 次删除
  1. +5
    -0
      openssh/banner.sls
  2. +4
    -0
      pillar.example

+ 5
- 0
openssh/banner.sls 查看文件

@@ -6,5 +6,10 @@ include:
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 %}

+ 4
- 0
pillar.example 查看文件

@@ -177,6 +177,10 @@ ssh_config:


openssh:
# Instead of adding a custom banner file you can set it in pillar
banner_string: |
Welcome to {{ grains['id'] }}!

# Controls if SSHD should be enabled/started
sshd_enable: true
auth:

正在加载...
取消
保存