aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/firewall/torrent.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/torrent.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/torrent.pp')
-rw-r--r--manifests/subsystems/firewall/torrent.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/subsystems/firewall/torrent.pp b/manifests/subsystems/firewall/torrent.pp
index 954c71f..2dc8451 100644
--- a/manifests/subsystems/firewall/torrent.pp
+++ b/manifests/subsystems/firewall/torrent.pp
@@ -6,7 +6,7 @@ class firewall::torrent {
proto => 'tcp',
destinationport => "6881:6999",
ratelimit => '-',
- order => "200",
+ order => 200,
}
shorewall::rule { "torrent-udp":
@@ -16,6 +16,6 @@ class firewall::torrent {
proto => 'udp',
destinationport => "6881:6999",
ratelimit => '-',
- order => "201",
+ order => 201,
}
}