Puppet Class: confdroid_nagios::params
- Inherited by:
-
confdroid_nagios::main::dirs
confdroid_nagios::main::user
confdroid_nagios::main::config
confdroid_nagios::main::install
confdroid_nagios::server::files
confdroid_nagios::client::target
confdroid_nagios::server::service
- Defined in:
- manifests/params.pp
Summary
Class holds all parameters for the confdroid_nagios module and is inherited by all classes except defines.Overview
confdroid_nagios::params.pp Module name: confdroid_nagios Author: 12ww1160 (12ww1160@confdroid.com)
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/params.pp', line 10
class confdroid_nagios::params (
# main
String $ng_nagios_server = 'nagios.example.net',
) {
# Default facts
$fqdn = $facts['networking']['fqdn']
$domain = $facts['networking']['domain']
$os_name = $facts['os']['name']
$os_release = $facts['os']['release']['major']
# includes must be last
include confdroid_nagios::main::config
}
|