]> gitweb.fluxo.info Git - puppet-shorewall.git/commitdiff
more comment for rules and masq
authoram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Tue, 27 Nov 2007 08:12:41 +0000 (08:12 +0000)
committeram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Tue, 27 Nov 2007 08:12:41 +0000 (08:12 +0000)
git-svn-id: https://svn/ipuppet/trunk/modules/shorewall@122 d66ca3ae-40d7-4aa7-90d4-87d79ca94279

manifests/init.pp

index 16628dc57b190c5bca81e6ecbebd6dea204e8570..a766b23d81f31f99bbb158fa0e2d18a2a23376cd 100644 (file)
@@ -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}"
                }
        }