removed special no-restart status for etch

This commit is contained in:
Tomas Barton 2014-01-27 00:04:33 +01:00
parent 3fdd59f654
commit 9dc5a1db18

View 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,
}
}