summaryrefslogtreecommitdiff
path: root/manifests/openbsd.pp
blob: 16ba2840fd33a2c6ef384f6f900d989cc95f944b (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 -P `/bin/cat /var/run/sshd.pid`',
  }
}