3826f0419a
Signed-off-by: Nick Chappell <nick@intronic.org>
60 خطوط
1.6 KiB
Puppet
60 خطوط
1.6 KiB
Puppet
# = Define: icinga2::conf
|
|
#
|
|
# General Apache define to be used to create generic custom .conf files
|
|
# Very simple wrapper to a normal file type
|
|
# Use source or template to define the source
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*source*]
|
|
# Sets the content of source parameter for the dotconf file
|
|
# If defined, icinga2 dotconf file will have the param: source => $source
|
|
#
|
|
# [*template*]
|
|
# Sets the path to the template to use as content for dotconf file
|
|
# If defined, icinga2 dotconf file has: content => content("$template")
|
|
# Note source and template parameters are mutually exclusive: don't use both
|
|
#
|
|
# [*options_hash*]
|
|
# Custom hash with key values to use in custom templates
|
|
#
|
|
define icinga2::conf (
|
|
$source = '' ,
|
|
$template = '' ,
|
|
$options_hash = undef,
|
|
$ensure = present,
|
|
$target_dir = '/etc/icinga2/conf.d',
|
|
$target_file_name = "${name}.conf",
|
|
$target_file_owner = 'root',
|
|
$target_file_group = 'root',
|
|
$target_file_mode = '644'
|
|
) {
|
|
|
|
validate_string($target_dir)
|
|
validate_string($target_file_name)
|
|
validate_string($target_file_owner)
|
|
validate_string($target_file_group)
|
|
validate_string($target_file_mode)
|
|
|
|
$manage_file_source = $source ? {
|
|
'' => undef,
|
|
default => $source,
|
|
}
|
|
|
|
$manage_file_content = $template ? {
|
|
'' => undef,
|
|
default => template($template),
|
|
}
|
|
|
|
file { "${target_dir}/${target_file_name}":
|
|
ensure => $ensure,
|
|
owner => $target_file_owner,
|
|
group => $target_file_group,
|
|
mode => $target_file_mode,
|
|
notify => Service['icinga2'],
|
|
source => $manage_file_source,
|
|
content => $manage_file_content,
|
|
}
|
|
|
|
}
|
|
|