module-sshd/manifests/openbsd.pp
Michael Moll 7743650cde style fixes
silence puppet-lint
2013-02-03 00:30:54 +01:00

8 lines
247 B
Puppet

class sshd::openbsd inherits sshd::base {
Service[sshd]{
restart => '/bin/kill -HUP `/bin/cat /var/run/sshd.pid`',
stop => '/bin/kill `/bin/cat /var/run/sshd.pid`',
start => '/usr/sbin/sshd',
hasstatus => false,
}
}