aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/firewall/router.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-18 16:06:28 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-18 16:06:28 -0200
commit9c3fd09a82b5d89605b0eb3730c5f5223af81f7b (patch)
tree59c089703749074e06fd370664bf3d42fe33a4bb /manifests/subsystems/firewall/router.pp
parent342a4d2f1432a952c2e8648de421bb0ebea20120 (diff)
downloadpuppet-nodo-9c3fd09a82b5d89605b0eb3730c5f5223af81f7b.tar.gz
puppet-nodo-9c3fd09a82b5d89605b0eb3730c5f5223af81f7b.tar.bz2
Changing order parameter to integer at shorewall rules
Diffstat (limited to 'manifests/subsystems/firewall/router.pp')
-rw-r--r--manifests/subsystems/firewall/router.pp56
1 files changed, 28 insertions, 28 deletions
diff --git a/manifests/subsystems/firewall/router.pp b/manifests/subsystems/firewall/router.pp
index 29d43a5..7fa2db3 100644
--- a/manifests/subsystems/firewall/router.pp
+++ b/manifests/subsystems/firewall/router.pp
@@ -6,7 +6,7 @@ class firewall::router::http($destination, $zone = 'loc', $originaldest = $ipadd
proto => 'tcp',
destinationport => '80',
ratelimit => '-',
- order => '600',
+ order => 600,
}
shorewall::rule { 'http-route-2':
@@ -17,7 +17,7 @@ class firewall::router::http($destination, $zone = 'loc', $originaldest = $ipadd
destinationport => '80',
originaldest => "$originaldest",
ratelimit => '-',
- order => '601',
+ order => 601,
}
}
@@ -29,7 +29,7 @@ class firewall::router::https($destination, $zone = 'loc', $originaldest = $ipad
proto => 'tcp',
destinationport => '443',
ratelimit => '-',
- order => '602',
+ order => 602,
}
shorewall::rule { 'https-route-2':
@@ -40,7 +40,7 @@ class firewall::router::https($destination, $zone = 'loc', $originaldest = $ipad
destinationport => '443',
originaldest => "$originaldest",
ratelimit => '-',
- order => '602',
+ order => 602,
}
}
@@ -54,7 +54,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
proto => 'tcp',
destinationport => "$puppetmaster_port",
ratelimit => '-',
- order => '700',
+ order => 700,
}
shorewall::rule { 'puppetmaster-2':
@@ -64,7 +64,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
proto => 'udp',
destinationport => "$puppetmaster_port",
ratelimit => '-',
- order => '701',
+ order => 701,
}
shorewall::rule { 'puppetmaster-3':
@@ -75,7 +75,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
destinationport => "$puppetmaster_port",
originaldest => "$originaldest",
ratelimit => '-',
- order => '702',
+ order => 702,
}
shorewall::rule { 'puppetmaster-4':
@@ -86,7 +86,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
destinationport => "$puppetmaster_port",
originaldest => "$originaldest",
ratelimit => '-',
- order => '703',
+ order => 703,
}
shorewall::rule { 'puppetmaster-5':
@@ -96,7 +96,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
proto => 'tcp',
destinationport => "$puppetmaster_nonssl_port",
ratelimit => '-',
- order => '704',
+ order => 704,
}
shorewall::rule { 'puppetmaster-6':
@@ -106,7 +106,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
proto => 'udp',
destinationport => "$puppetmaster_nonssl_port",
ratelimit => '-',
- order => '705',
+ order => 705,
}
shorewall::rule { 'puppetmaster-7':
@@ -117,7 +117,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
destinationport => "$puppetmaster_nonssl_port",
originaldest => "$originaldest",
ratelimit => '-',
- order => '706',
+ order => 706,
}
shorewall::rule { 'puppetmaster-8':
@@ -128,7 +128,7 @@ class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140',
destinationport => "$puppetmaster_nonssl_port",
originaldest => "$originaldest",
ratelimit => '-',
- order => '707',
+ order => 707,
}
}
@@ -140,7 +140,7 @@ class firewall::router::gitd($destination, $zone = 'loc', $originaldest = $ipadd
proto => 'tcp',
destinationport => '9418',
ratelimit => '-',
- order => '800',
+ order => 800,
}
shorewall::rule { 'git-daemon-2':
@@ -151,7 +151,7 @@ class firewall::router::gitd($destination, $zone = 'loc', $originaldest = $ipadd
destinationport => '9418',
originaldest => "$originaldest",
ratelimit => '-',
- order => '801',
+ order => 801,
}
}
@@ -163,7 +163,7 @@ class firewall::router::icecast($destination, $zone = 'loc', $originaldest = $ip
proto => 'tcp',
destinationport => '8000',
ratelimit => '-',
- order => '900',
+ order => 900,
}
shorewall::rule { 'icecast-2':
@@ -174,7 +174,7 @@ class firewall::router::icecast($destination, $zone = 'loc', $originaldest = $ip
destinationport => '8000',
originaldest => "$originaldest",
ratelimit => '-',
- order => '901',
+ order => 901,
}
}
@@ -186,7 +186,7 @@ class firewall::router::mail($destination, $zone = 'loc', $originaldest = $ipadd
proto => 'tcp',
destinationport => '25',
ratelimit => '-',
- order => '1000',
+ order => 1000,
}
shorewall::rule { 'mail-2':
@@ -197,7 +197,7 @@ class firewall::router::mail($destination, $zone = 'loc', $originaldest = $ipadd
destinationport => '25',
originaldest => "$originaldest",
ratelimit => '-',
- order => '1001',
+ order => 1001,
}
shorewall::rule { 'mail-3':
@@ -207,7 +207,7 @@ class firewall::router::mail($destination, $zone = 'loc', $originaldest = $ipadd
proto => 'tcp',
destinationport => '993',
ratelimit => '-',
- order => '1002',
+ order => 1002,
}
shorewall::rule { 'mail-4':
@@ -218,7 +218,7 @@ class firewall::router::mail($destination, $zone = 'loc', $originaldest = $ipadd
destinationport => '993',
originaldest => "$originaldest",
ratelimit => '-',
- order => '1003',
+ order => 1003,
}
shorewall::rule { 'mail-5':
@@ -228,7 +228,7 @@ class firewall::router::mail($destination, $zone = 'loc', $originaldest = $ipadd
proto => 'tcp',
destinationport => '587',
ratelimit => '-',
- order => '1004',
+ order => 1004,
}
shorewall::rule { 'mail-6':
@@ -239,7 +239,7 @@ class firewall::router::mail($destination, $zone = 'loc', $originaldest = $ipadd
destinationport => '587',
originaldest => "$originaldest",
ratelimit => '-',
- order => '1005',
+ order => 1005,
}
}
@@ -311,7 +311,7 @@ class firewall::router::torrent($destination, $zone = 'loc', $originaldest = $ip
proto => 'tcp',
destinationport => "6881:6999",
ratelimit => '-',
- order => "200",
+ order => 200,
}
shorewall::rule { "torrent-tcp-2":
@@ -322,7 +322,7 @@ class firewall::router::torrent($destination, $zone = 'loc', $originaldest = $ip
destinationport => "6881:6999",
originaldest => "$originaldest",
ratelimit => '-',
- order => "200",
+ order => 200,
}
shorewall::rule { "torrent-udp-1":
@@ -332,7 +332,7 @@ class firewall::router::torrent($destination, $zone = 'loc', $originaldest = $ip
proto => 'udp',
destinationport => "6881:6999",
ratelimit => '-',
- order => "201",
+ order => 201,
}
shorewall::rule { "torrent-udp-2":
@@ -343,7 +343,7 @@ class firewall::router::torrent($destination, $zone = 'loc', $originaldest = $ip
destinationport => "6881:6999",
originaldest => "$originaldest",
ratelimit => '-',
- order => "201",
+ order => 201,
}
}
@@ -355,7 +355,7 @@ class firewall::router::gobby($destination, $zone = 'loc', $originaldest = $ipad
proto => 'tcp',
destinationport => '6523',
ratelimit => '-',
- order => '600',
+ order => 600,
}
shorewall::rule { 'gobby-route-2':
@@ -366,7 +366,7 @@ class firewall::router::gobby($destination, $zone = 'loc', $originaldest = $ipad
destinationport => '6523',
originaldest => "$originaldest",
ratelimit => '-',
- order => '601',
+ order => 601,
}
}