aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-06-13 09:40:09 +0200
committermh <mh@immerda.ch>2015-12-05 11:35:24 +0100
commitd153d86fb344c3a780b0efcc180cd3f7c0a75076 (patch)
tree4e4b1f5fdf939faa159d7a6435fc576c97d987c4
parentd3784c34e285c7bb8c16ef0f957ec4bc4b908207 (diff)
downloadpuppet-shorewall-d153d86fb344c3a780b0efcc180cd3f7c0a75076.tar.gz
puppet-shorewall-d153d86fb344c3a780b0efcc180cd3f7c0a75076.tar.bz2
indentation
-rw-r--r--manifests/rules/jabberserver.pp36
1 files changed, 18 insertions, 18 deletions
diff --git a/manifests/rules/jabberserver.pp b/manifests/rules/jabberserver.pp
index 0b10420..226d627 100644
--- a/manifests/rules/jabberserver.pp
+++ b/manifests/rules/jabberserver.pp
@@ -5,30 +5,30 @@ class shorewall::rules::jabberserver(
) {
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';
}
}
}