blob: 8acdaad5082271deef2aba1c36ac7f5a8b1a6a03 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | define shorewall::rules::out::ekeyd($host) {
  shorewall::rule { "me-${name}-tcp_ekeyd":
    source          => '$FW',
    destination     => "${name}:${host}",
    proto           => 'tcp',
    destinationport => '8888',
    order           => 240,
    action          => 'ACCEPT';
  }
}
 |