From: Tomas Barton Date: Sun, 26 Jan 2014 23:04:33 +0000 (+0100) Subject: removed special no-restart status for etch X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9dc5a1db18ac634512a5509685eaf3b3a60cf6c7;p=puppet-sshd.git removed special no-restart status for etch --- 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, } }