summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/openfire.pp
blob: 0e6d1d80063dab05df30ea204f982c6ae5768d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class shorewall::rules::openfire {
  include shorewall::rules::jaberserver

  shorewall::rule { 'me-all-openfire-tcp':
    source          => '$FW',
    destination     => 'all',
    proto           => 'tcp',
    destinationport => '7070,7443,7777',
    order           => 240,
    action          => 'ACCEPT';
  }
}