xymon/manifests/client/config.pp

22 lines
407 B
Puppet

# == Class: xymon::client::install
#
# Install Xymon client
#
class xymon::client::config {
File {
owner => root,
group => root,
mode => 0644,
}
file { "${xymon::client::service_path}":
ensure => present,
mode => 0754,
content => template($xymon::client::service_tpl),
notify => Service[$xymon::client::service_name],
}
} # Private class: xymon::client::config