]> gitweb.fluxo.info Git - puppet-shorewall.git/commitdiff
indentation
authormh <mh@immerda.ch>
Fri, 13 Jun 2014 07:40:09 +0000 (09:40 +0200)
committermh <mh@immerda.ch>
Sat, 5 Dec 2015 10:35:24 +0000 (11:35 +0100)
manifests/rules/jabberserver.pp

index 0b10420dd2f17cdd0cd39020d32d6e1597fef9ed..226d62741bb78ecbccae3b642efe8553ae33b29f 100644 (file)
@@ -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';
     }
   }
 }