summaryrefslogtreecommitdiff
path: root/manifests/client.pp
blob: e7df4c41c8479c6faa50c760f424899d50a1c13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class ekeyd::client(
  $ekeyd_host
) {
  case $operatingsystem {
    centos: { include ekeyd::client::centos }
    default: { include ekeyd::client::base }
  }

  if $use_shorewall {
    class{'shorewall::rules::out::ekeyd':
      ekeyd_host => $ekeyd_host,
    }
  }
}