Browse Source

Split the sshd_config and banner components into sub-states

tags/v0.41.0
Kenny Do 11 years ago
parent
commit
07771c0ebf
4 changed files with 31 additions and 17 deletions
  1. +9
    -4
      README.rst
  2. +10
    -0
      openssh/banner.sls
  3. +12
    -0
      openssh/config.sls
  4. +0
    -13
      openssh/init.sls

+ 9
- 4
README.rst View File

@@ -1,7 +1,12 @@
openssh
=======
Install and configure an openssh server.

openssh
-------

Install openssh and set up the daemon, install a useful banner as well
States
------
``openssh``
Installs the ``openssh`` package and service.
``openssh.config``
Installs the configuration file included in this formula (under "openssh/files").
``openssh.banner``
Installs a banner that users see when SSH-ing in.

+ 10
- 0
openssh/banner.sls View File

@@ -0,0 +1,10 @@
{% from "openssh/map.jinja" import openssh with context %}

include:
- openssh

sshd_banner:
file.managed:
- name: {{ openssh.banner }}
- source: {{ openssh.banner_src }}
- template: jinja

+ 12
- 0
openssh/config.sls View File

@@ -0,0 +1,12 @@
{% from "openssh/map.jinja" import openssh with context %}

include:
- openssh

sshd_config:
file.managed:
- name: {{ openssh.sshd_config }}
- source: {{ openssh.sshd_config_src }}
- watch_in:
- service: {{ openssh.service }}


+ 0
- 13
openssh/init.sls View File

@@ -8,17 +8,4 @@ openssh:
- name: {{ openssh.service }}
- require:
- pkg: {{ openssh.server }}
- file: sshd_banner
- watch:
- file: sshd_config

sshd_config:
file.managed:
- name: {{ openssh.sshd_config }}
- source: {{ openssh.sshd_config_src }}

sshd_banner:
file.managed:
- name: {{ openssh.banner }}
- source: {{ openssh.banner_src }}
- template: jinja

Loading…
Cancel
Save