aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/out/ekeyd.pp
blob: 858dca4b630c197286d27634968c65ba6cd4d514 (plain)
1
2
3
4
5
6
7
8
9
10
define shorewall::rules::out::ekeyd($ekeyd_host) {
  shorewall::rule { "me-${name}-tcp_ekeyd":
    source          => '$FW',
    destination     => "${name}:${ekeyd_host}",
    proto           => 'tcp',
    destinationport => '8888',
    order           => 240,
    action          => 'ACCEPT';
  }
}