diff options
author | Marcel Haerry <haerry@puzzle.ch> | 2011-08-04 13:39:27 +0200 |
---|---|---|
committer | Marcel Haerry <haerry@puzzle.ch> | 2011-08-04 13:39:27 +0200 |
commit | 8dde08a3acbf2815e0cacdc4121f4f8fa2f6c0e5 (patch) | |
tree | 73153b146eedb931f9d46dddb23cc92e3067b4cb /manifests/rule.pp | |
parent | 777f77d360b3ba97f2b35f04bf81fe894196c76d (diff) | |
download | puppet-shorewall-8dde08a3acbf2815e0cacdc4121f4f8fa2f6c0e5.tar.gz puppet-shorewall-8dde08a3acbf2815e0cacdc4121f4f8fa2f6c0e5.tar.bz2 |
refactor things to use the concat module
Diffstat (limited to 'manifests/rule.pp')
-rw-r--r-- | manifests/rule.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/rule.pp b/manifests/rule.pp index 8394970..2fe91e2 100644 --- a/manifests/rule.pp +++ b/manifests/rule.pp @@ -13,8 +13,8 @@ define shorewall::rule( $mark = '', $order ){ - shorewall::entry{"rules.d/${order}-${name}": - ensure => $ensure, - line => "# ${name}\n${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${originaldest} ${ratelimit} ${user} ${mark}", - } + shorewall::entry{"rules-${order}-${name}": + ensure => $ensure, + line => "# ${name}\n${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport} ${originaldest} ${ratelimit} ${user} ${mark}", + } } |