diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-08-11 17:45:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-08-11 17:45:29 -0300 |
commit | 675748b6984599298155c284fad4a8ec8a280a65 (patch) | |
tree | be48dba4c5e89815ff2e4f61e8616cb6e78bc843 /manifests/subsystems/firewall/router.pp | |
parent | 39b71f1b7e6ea7647eb855149c962d766af51fbf (diff) | |
download | puppet-nodo-675748b6984599298155c284fad4a8ec8a280a65.tar.gz puppet-nodo-675748b6984599298155c284fad4a8ec8a280a65.tar.bz2 |
Adding back order at munin rules
Diffstat (limited to 'manifests/subsystems/firewall/router.pp')
-rw-r--r-- | manifests/subsystems/firewall/router.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/subsystems/firewall/router.pp b/manifests/subsystems/firewall/router.pp index 19484c1..9092fbb 100644 --- a/manifests/subsystems/firewall/router.pp +++ b/manifests/subsystems/firewall/router.pp @@ -126,7 +126,7 @@ define firewall::router::ssh($destination, $port_orig = '22', $port_dest = '', $ } } -define firewall::router::munin($destination, $port_orig, $port_dest = '', $zone = 'loc') { +define firewall::router::munin($destination, $port_orig, $port_dest = '', $zone = 'loc', $order = '400') { shorewall::rule { "munin-$name": action => 'DNAT', source => 'all', @@ -137,6 +137,7 @@ define firewall::router::munin($destination, $port_orig, $port_dest = '', $zone proto => 'tcp', destinationport => "$port_orig", ratelimit => '-', + order => $order, } } |