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

@ -7,11 +7,11 @@
# $puppetversion should be either 24 or 25 to enable a 24 compatible
# mode, in 24 mode you might see phantom notifies this is a side effect
# of the method we use to clear the fragments directory.
#
#
# The regular expression below will try to figure out your puppet version
# 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 {
$id = $::id
$root_group = $id ? {
@ -35,6 +35,10 @@ class concat::setup {
owner => $id,
group => $root_group,
mode => '0750';
## Old versions of this module used a different path.
'/usr/local/bin/concatfragments.sh':
ensure => absent;
}
}