summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 528779c10131473bc542395e894afc45afbc866b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class sshd::debian inherits sshd::linux {

  # the templates for Debian need lsbdistcodename
  include lsb
  File['sshd_config']{
    require => Package['lsb']
  }

  Package[openssh]{
    name => 'openssh-server',
  }
  Service[sshd]{
    name => 'ssh',
    hasstatus => false,
  }
}