aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-08-11 17:39:43 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-08-11 17:39:43 -0300
commit39b71f1b7e6ea7647eb855149c962d766af51fbf (patch)
treee3d69994b779a62a961e155f3757ac262a5332b0 /manifests/subsystems
parent52f68bb9ec16ebd8843d7f1aac245e1126d17ded (diff)
downloadpuppet-nodo-39b71f1b7e6ea7647eb855149c962d766af51fbf.tar.gz
puppet-nodo-39b71f1b7e6ea7647eb855149c962d766af51fbf.tar.bz2
Minor fixes
Diffstat (limited to 'manifests/subsystems')
-rw-r--r--manifests/subsystems/firewall/router.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/subsystems/firewall/router.pp b/manifests/subsystems/firewall/router.pp
index 8f6097c..19484c1 100644
--- a/manifests/subsystems/firewall/router.pp
+++ b/manifests/subsystems/firewall/router.pp
@@ -167,9 +167,9 @@ class firewall::router::hairpinning($order = '200', $proto = 'tcp', $port = 'www
$external_ip = '$ETH0_IP', $interface = 'eth1',
$destination = '192.168.1.100') {
shorewall::masq { "routeback-$name":
- interface => '$interface:$destination',
- source => '$interface',
- address => $external_ip',
+ interface => "$interface:$destination",
+ source => $interface,
+ address => $external_ip,
proto => $proto,
port => $port,
order => $order,