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