diff options
author | am <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2007-11-27 08:12:41 +0000 |
---|---|---|
committer | am <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2007-11-27 08:12:41 +0000 |
commit | d73403fc6d4c8b78f7bc7682a8487518a96c69c0 (patch) | |
tree | d6a88c13c6e016097165a9386bd740cbd5a88b15 | |
parent | 3a63fcc11683681408ff9955a97e76c0671d3e7b (diff) | |
download | puppet-shorewall-d73403fc6d4c8b78f7bc7682a8487518a96c69c0.tar.gz puppet-shorewall-d73403fc6d4c8b78f7bc7682a8487518a96c69c0.tar.bz2 |
more comment for rules and masq
git-svn-id: https://svn/ipuppet/trunk/modules/shorewall@122 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
-rw-r--r-- | manifests/init.pp | 6 |
1 files 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}" } } |