summaryrefslogtreecommitdiff
path: root/manifests/host.pp
blob: 6b8dd1a27ced2f118cb4dc264e8c4e775450d6ce (plain)
1
2
3
4
5
6
7
8
9
10
class ekeyd::host inherits ekeyd {
  case $operatingsystem {
    centos: { include ekeyd::host::centos }
    default: { include ekeyd::host::base }
  }

  if $use_shorewall {
    include shorewall::rules::ekeyd
  }
}