Fix comments to match actual behavior, clean up old script.

* Zap the old copy of /usr/local/bin/concatfragments.sh.
* Fix comments to point at new location of script.
* Delete trailing whitespace.
This commit is contained in:
Sharif Nassar 2011-12-14 13:45:06 -08:00
parent bd21154fa0
commit 30c96286c9

View file

@ -11,7 +11,7 @@
# The regular expression below will try to figure out your puppet version # The regular expression below will try to figure out your puppet version
# but this code will only work in 0.24.8 and newer. # but this code will only work in 0.24.8 and newer.
# #
# It also copies out the concatfragments.sh file to /usr/local/bin # It also copies out the concatfragments.sh file to ${concatdir}/bin
class concat::setup { class concat::setup {
$id = $::id $id = $::id
$root_group = $id ? { $root_group = $id ? {
@ -35,6 +35,10 @@ class concat::setup {
owner => $id, owner => $id,
group => $root_group, group => $root_group,
mode => '0750'; mode => '0750';
## Old versions of this module used a different path.
'/usr/local/bin/concatfragments.sh':
ensure => absent;
} }
} }