summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 684858a6b40a20caa057724636f7105d184e96fa (plain)
1
2
3
4
5
6
7
8
9
10
class strongswan(
  $manage_shorewall = false
) {

  include strongswan::base

  if $manage_shorewall {
    include shorewall::rules::ipsec
  }
}