From 07771c0ebfd08541123c1a8a91e9989e23f94cfb Mon Sep 17 00:00:00 2001 From: Kenny Do Date: Fri, 3 Jan 2014 18:32:05 -0800 Subject: [PATCH] Split the sshd_config and banner components into sub-states --- README.rst | 13 +++++++++---- openssh/banner.sls | 10 ++++++++++ openssh/config.sls | 12 ++++++++++++ openssh/init.sls | 13 ------------- 4 files changed, 31 insertions(+), 17 deletions(-) create mode 100644 openssh/banner.sls create mode 100644 openssh/config.sls diff --git a/README.rst b/README.rst index 119f98f..37669a1 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/openssh/banner.sls b/openssh/banner.sls new file mode 100644 index 0000000..f301a09 --- /dev/null +++ b/openssh/banner.sls @@ -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 diff --git a/openssh/config.sls b/openssh/config.sls new file mode 100644 index 0000000..cbf7376 --- /dev/null +++ b/openssh/config.sls @@ -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 }} + diff --git a/openssh/init.sls b/openssh/init.sls index f70539d..9069302 100644 --- a/openssh/init.sls +++ b/openssh/init.sls @@ -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