module-sshd/manifests/openbsd.pp

9 lines
268 B
ObjectPascal
Raw Normal View History

2009-09-29 19:53:04 +02:00
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',
status => '/usr/bin/pgrep -f /usr/sbin/sshd',
2009-09-29 19:53:04 +02:00
}
}