From d73403fc6d4c8b78f7bc7682a8487518a96c69c0 Mon Sep 17 00:00:00 2001 From: am Date: Tue, 27 Nov 2007 08:12:41 +0000 Subject: more comment for rules and masq git-svn-id: https://svn/ipuppet/trunk/modules/shorewall@122 d66ca3ae-40d7-4aa7-90d4-87d79ca94279 --- manifests/init.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 16628dc..a766b23 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -133,7 +133,7 @@ class shorewall { $ratelimit = '-', $user = '-', $mark = '', $order) { entry { "rules.d/${order}-${name}": - line => "${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${originaldest} ${ratelimit} ${user} ${mark}", + line => "# ${name}\n${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${originaldest} ${ratelimit} ${user} ${mark}", } } @@ -144,7 +144,7 @@ class shorewall { # address = If you specify an address here, SNAT will be used and this will be the source address. define masq($interface, $source, $address = '-', $proto = '-', $port = '-', $ipsec = '-', $mark = '', $order='100' ) { entry { "masq.d/${order}-${name}": - line => "${interface} ${source} ${address} ${proto} ${port} ${ipsec} ${mark}" + line => "# ${name}\n${interface} ${source} ${address} ${proto} ${port} ${ipsec} ${mark}" } } @@ -152,7 +152,7 @@ class shorewall { managed_file { proxyarp: } define proxyarp($interface, $external, $haveroute = yes, $persistent = no, $order='100') { entry { "proxyarp.d/${order}-${name}": - line => "${name} ${interface} ${external} ${haveroute} ${persistent}" + line => "# ${name}\n${name} ${interface} ${external} ${haveroute} ${persistent}" } } -- cgit v1.2.3