7437a68016
always exec the concatfragments script as root when running as root
50 lines
1.3 KiB
Puppet
50 lines
1.3 KiB
Puppet
# === Class: concat::setup
|
|
#
|
|
# Sets up the concat system. This is a private class.
|
|
#
|
|
# [$concatdir]
|
|
# is where the fragments live and is set on the fact concat_basedir.
|
|
# Since puppet should always manage files in $concatdir and they should
|
|
# not be deleted ever, /tmp is not an option.
|
|
#
|
|
# It also copies out the concatfragments.sh file to ${concatdir}/bin
|
|
#
|
|
class concat::setup {
|
|
if $caller_module_name != $module_name {
|
|
warning("${name} is deprecated as a public API of the ${module_name} module and should no longer be directly included in the manifest.")
|
|
}
|
|
|
|
if $::concat_basedir {
|
|
$concatdir = $::concat_basedir
|
|
} else {
|
|
fail ('$concat_basedir not defined. Try running again with pluginsync=true on the [master] and/or [main] section of your node\'s \'/etc/puppet/puppet.conf\'.')
|
|
}
|
|
|
|
$script_name = $::kernel ? {
|
|
'windows' => 'concatfragments.rb',
|
|
default => 'concatfragments.sh'
|
|
}
|
|
|
|
$script_path = "${concatdir}/bin/${script_name}"
|
|
|
|
$script_command = $::kernel ? {
|
|
'windows' => "ruby.exe ${script_path}",
|
|
default => $script_path
|
|
}
|
|
|
|
File {
|
|
backup => false,
|
|
}
|
|
|
|
file { $script_path:
|
|
ensure => file,
|
|
owner => $::id,
|
|
mode => '0755',
|
|
source => "puppet:///modules/concat/${script_name}",
|
|
}
|
|
|
|
file { [ $concatdir, "${concatdir}/bin" ]:
|
|
ensure => directory,
|
|
mode => '0755',
|
|
}
|
|
}
|