summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Barton <barton.tomas@gmail.com>2014-01-27 00:04:33 +0100
committerTomas Barton <barton.tomas@gmail.com>2014-01-27 00:04:33 +0100
commit9dc5a1db18ac634512a5509685eaf3b3a60cf6c7 (patch)
treebc7acebc50d807c3cfe2e20d56b56a5c9c94108b
parent3fdd59f65478ba7d5e8b0f66aa5ea04ed23ec45e (diff)
removed special no-restart status for etch
-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,
}
}