aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/firewall.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystems/firewall.pp')
-rw-r--r--manifests/subsystems/firewall.pp20
1 files changed, 10 insertions, 10 deletions
diff --git a/manifests/subsystems/firewall.pp b/manifests/subsystems/firewall.pp
index 7547ea9..949a81d 100644
--- a/manifests/subsystems/firewall.pp
+++ b/manifests/subsystems/firewall.pp
@@ -23,35 +23,35 @@ class firewall {
sourcezone => 'vm',
destinationzone => 'net',
policy => 'ACCEPT',
- order => '1',
+ order => 1,
}
shorewall::policy { 'fw-net':
sourcezone => '$FW',
destinationzone => 'net',
policy => 'ACCEPT',
- order => '2',
+ order => 2,
}
shorewall::policy { 'fw-vm':
sourcezone => '$FW',
destinationzone => 'vm',
policy => 'ACCEPT',
- order => '3',
+ order => 3,
}
shorewall::policy { 'net-all':
sourcezone => 'net',
destinationzone => 'all',
policy => 'DROP',
- order => '4',
+ order => 4,
}
shorewall::policy { 'all-all':
sourcezone => 'all',
destinationzone => 'all',
policy => 'REJECT',
- order => '90',
+ order => 90,
}
#
@@ -87,7 +87,7 @@ class firewall {
proto => '-',
destinationport => '-',
ratelimit => '-',
- order => '100',
+ order => 100,
}
shorewall::rule { 'ping':
@@ -97,7 +97,7 @@ class firewall {
proto => '-',
destinationport => '-',
ratelimit => '-',
- order => '101',
+ order => 101,
}
shorewall::rule { 'http':
@@ -107,7 +107,7 @@ class firewall {
proto => '-',
destinationport => '-',
ratelimit => '-',
- order => '102',
+ order => 102,
}
shorewall::rule { 'https':
@@ -117,7 +117,7 @@ class firewall {
proto => '-',
destinationport => '-',
ratelimit => "$firewall_ssl_ratelimit",
- order => '103',
+ order => 103,
}
$munin_port = $node_munin_port ? {
@@ -132,7 +132,7 @@ class firewall {
proto => 'tcp',
destinationport => "$munin_port",
ratelimit => '-',
- order => "104",
+ order => 104,
}
#