summaryrefslogtreecommitdiff
path: root/manifests/openbsd.pp
blob: f1379d726c9eaf974f7c9b83176c8212abb3424c (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,
  }
}