Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
duritong committed Jun 13, 2014
1 parent e755631 commit e0a6725
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions manifests/rules/jabberserver.pp
Expand Up @@ -5,30 +5,30 @@
) {
shorewall::rule {
'net-me-tcp_jabber':
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => '5222,5223,5269',
order => 240,
action => 'ACCEPT';
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => '5222,5223,5269',
order => 240,
action => 'ACCEPT';
'me-net-tcp_jabber_s2s':
source => '$FW',
destination => 'net',
proto => 'tcp',
destinationport => '5260,5269,5270,5271,5272',
order => 240,
action => 'ACCEPT';
source => '$FW',
destination => 'net',
proto => 'tcp',
destinationport => '5260,5269,5270,5271,5272',
order => 240,
action => 'ACCEPT';
}

if $open_stun {
shorewall::rule {
'net-me-udp_jabber_stun_server':
source => 'net',
destination => '$FW',
proto => 'udp',
destinationport => '3478',
order => 240,
action => 'ACCEPT';
source => 'net',
destination => '$FW',
proto => 'udp',
destinationport => '3478',
order => 240,
action => 'ACCEPT';
}
}
}

0 comments on commit e0a6725

Please sign in to comment.