Puppet Class: nagios::plugin::dir_status

Defined in:
manifests/plugin/dir_status.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
# File 'manifests/plugin/dir_status.pp', line 1

class nagios::plugin::dir_status {

  # Multiple checks need this file
  file { "${nagios::client::plugin_dir}/check_dir_status":
    owner   => 'root',
    group   => 'root',
    mode    => '0755',
    content => template("${module_name}/plugins/check_dir_status"),
  }

}