summaryrefslogtreecommitdiff
path: root/manifests/openbsd.pp
blob: cb6dbba6816ca143313bc91fccf6d053bce61073 (plain)
1
2
3
4
5
6
7
8
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',
  }
}