diff options
author | Tomas Barton <barton.tomas@gmail.com> | 2014-01-27 00:04:33 +0100 |
---|---|---|
committer | Tomas Barton <barton.tomas@gmail.com> | 2014-01-27 00:04:33 +0100 |
commit | 9dc5a1db18ac634512a5509685eaf3b3a60cf6c7 (patch) | |
tree | bc7acebc50d807c3cfe2e20d56b56a5c9c94108b | |
parent | 3fdd59f65478ba7d5e8b0f66aa5ea04ed23ec45e (diff) | |
download | puppet-sshd-9dc5a1db18ac634512a5509685eaf3b3a60cf6c7.tar.gz puppet-sshd-9dc5a1db18ac634512a5509685eaf3b3a60cf6c7.tar.bz2 |
removed special no-restart status for etch
-rw-r--r-- | manifests/debian.pp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp index baacbba..ff2d7b1 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -9,15 +9,10 @@ class sshd::debian inherits sshd::linux { name => 'openssh-server', } - $sshd_restartandstatus = $::lsbdistcodename ? { - etch => false, - default => true - } - Service[sshd]{ name => 'ssh', pattern => 'sshd', - hasstatus => $sshd_restartandstatus, - hasrestart => $sshd_restartandstatus, + hasstatus => true, + hasrestart => true, } } |