summaryrefslogtreecommitdiff
path: root/manifests/client.pp
blob: 0d1d198bc3a341b24e152266108b4af653b001cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# manifests/client.pp

class sshd::client {
  case $operatingsystem {
    debian,ubuntu: { include sshd::client::debian }
    default: {
      case $kernel {
        linux: { include sshd::client::linux }
        default: { include sshd::client::base }
      }
    }
  }
  if $use_shorewall{
    include shorewall::rules::out::ssh
  }
}