]> gitweb.fluxo.info Git - puppet-sshd.git/commitdiff
removed special no-restart status for etch
authorTomas Barton <barton.tomas@gmail.com>
Sun, 26 Jan 2014 23:04:33 +0000 (00:04 +0100)
committerTomas Barton <barton.tomas@gmail.com>
Sun, 26 Jan 2014 23:04:33 +0000 (00:04 +0100)
manifests/debian.pp

index baacbba2063329153828a69f8ca30158104be68e..ff2d7b12ea51d5c9c2033c6f5676ae0f686365ee 100644 (file)
@@ -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,
   }
 }