summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/debian.pp9
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,
}
}