Puppet Class: monitoring::config
- Defined in:
- manifests/config.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'manifests/config.pp', line 2
class monitoring::config {
include ::monitoring::params
$nagios_extra_plugins = $::monitoring::nagios_extra_plugins
file { '/etc/nagios':
ensure => directory,
owner => root,
group => root,
mode => '0755',
}
file { $nagios_extra_plugins:
ensure => directory,
owner => root,
group => root,
mode => '0755',
}
}
|