diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 22:31:15 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 22:31:15 -0200 |
commit | 0ff29932990868b19d8002ff261387a0ee36603f (patch) | |
tree | 68c28e60f2ea4a1963844d35a15a8fe56892bcab /manifests/subsystems/firewall/local.pp | |
parent | 1bb341f1cc5dfb56c570b8ee008f64a50362af8b (diff) | |
download | puppet-nodo-0ff29932990868b19d8002ff261387a0ee36603f.tar.gz puppet-nodo-0ff29932990868b19d8002ff261387a0ee36603f.tar.bz2 |
Adding gdm3 class and misc fixes
Diffstat (limited to 'manifests/subsystems/firewall/local.pp')
-rw-r--r-- | manifests/subsystems/firewall/local.pp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/manifests/subsystems/firewall/local.pp b/manifests/subsystems/firewall/local.pp index ee82563..7e23e29 100644 --- a/manifests/subsystems/firewall/local.pp +++ b/manifests/subsystems/firewall/local.pp @@ -5,6 +5,11 @@ class firewall::local( $manage_interface = hiera('nodo::firewall::local::manage_iface', false) ) { + shorewall::zone { 'loc': + type => 'ipv4', + order => 4, + } + if $manage_host { shorewall::host { "$interface-loc": name => "$interface:$network", @@ -44,8 +49,4 @@ class firewall::local( order => 7, } - shorewall::zone { 'loc': - type => 'ipv4', - order => 4, - } } |