diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-17 13:35:57 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-17 13:35:57 -0200 |
commit | d75effa11c00a960a15795f9b9b363869ed3da25 (patch) | |
tree | e7be4ab517504cc70af93def8c5214523640bed3 /manifests/init.pp | |
parent | 47b100f88da682b5c2e055ec175c2acce7d04551 (diff) | |
download | puppet-nodo-d75effa11c00a960a15795f9b9b363869ed3da25.tar.gz puppet-nodo-d75effa11c00a960a15795f9b9b363869ed3da25.tar.bz2 |
Adding unzip package
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index e4d3152..9e18a25 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -257,7 +257,7 @@ class nodo::vserver inherits nodo { case $ensure { 'running': { - shorewall::rule { "ssh-$context": + shorewall::rule { "ssh-$context-1": action => 'DNAT', source => 'net', destination => "vm:192.168.0.$context:22", @@ -267,6 +267,17 @@ class nodo::vserver inherits nodo { order => "2$id", } + shorewall::rule { "ssh-$context-2": + action => 'DNAT', + source => '$FW', + destination => "fw:192.168.0.$context:22", + proto => 'tcp', + destinationport => '8140', + originaldest => "$ipaddress", + ratelimit => '-', + order => '304', + } + if $proxy { shorewall::rule { 'http-route': action => 'DNAT', |