xymon/manifests/client/install.pp

21 lines
421 B
Puppet

# == Class: xymon::client::install
#
# Install Xymon client
#
class xymon::client::install {
Exec {
path => [ '/bin', '/sbin', '/usr/bin', '/usr/sbin' ],
logoutput => 'on_failure',
}
exec { 'Create download directory for Xymon client package':
command => "mkdir -p -- ${xymon::client::download_dir}",
creates => $xymon::client::download_dir,
}
} # Private class: xymon::client::install