41 lines
1.3 KiB
Puppet
41 lines
1.3 KiB
Puppet
## cd_nagios::nagios::objects::add_contactgroups_rules.pp
|
|
# Module name: cd_nagios
|
|
# Author: Arne Teuke (arne_teuke@ConfDroid.com)
|
|
# @summary Class manages /etc/nagios/conf.d/nagios_add_contactgroups.cfg file
|
|
# and populates through define and external puppet rules
|
|
# @example
|
|
# cd_nagios::nagios::objects::add_contactgroups { 'example_group':
|
|
# ng_contactgroup_name => 'example_group',
|
|
# ng_contactgroup_alias => 'Example Group',
|
|
# ng_contactgroup_register => '1',
|
|
# }
|
|
################################################################################
|
|
class cd_nagios::nagios::objects::add_contactgroups_rules (
|
|
|
|
) inherits cd_nagios::params {
|
|
if $::fqdn == $ng_nagios_server {
|
|
# manage /etc/nagios/conf.d/nagios_add_contactgroups.cfg
|
|
|
|
concat { $ng_tgt_contactgroup_add:
|
|
ensure => present,
|
|
path => $ng_tgt_contactgroup_add,
|
|
owner => $ng_user,
|
|
group => $ng_user,
|
|
mode => '0640',
|
|
selrange => s0,
|
|
selrole => object_r,
|
|
seltype => nagios_etc_t,
|
|
seluser => system_u,
|
|
notify => Service[$ng_service],
|
|
}
|
|
|
|
# manage file header
|
|
|
|
concat::fragment { 'contactgroups_header':
|
|
target => $ng_tgt_contactgroup_add,
|
|
content => template($ng_cntctgrps_head_erb),
|
|
order => '000',
|
|
}
|
|
}
|
|
}
|