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