summaryrefslogtreecommitdiff
path: root/manifests/openbsd.pp
blob: 1ad37cc72d96e9c9c0c24ec8bed5901733a67bb7 (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',
    hasstatus => false,
  }
}