Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8390992
sysloglogger.pp
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
sysloglogger.pp
View Options
# == Defined type: icinga2::object::sysloglogger
#
# This is a defined type for Icinga 2 user objects.
# See the following Icinga 2 doc page for more info:
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/configuring-icinga2#objecttype-sysloglogger
#
# === Parameters
#
# See the inline comments.
#
define
icinga2
::
object
::
sysloglogger
(
$object_name
=
$name,
$severity
=
'warning'
,
$target_dir
=
'/etc/icinga2/objects'
,
$target_file_name
=
"${name}.conf"
,
$target_file_ensure
=
file
,
$target_file_owner
=
'root'
,
$target_file_group
=
'root'
,
$target_file_mode
=
'0644'
,
$refresh_icinga2_service
=
true
)
{
#Do some validation of the class' parameters:
validate_string
(
$object_name)
validate_string
(
$severity)
validate_string
(
$target_dir)
validate_string
(
$target_file_name)
validate_string
(
$target_file_owner)
validate_string
(
$target_file_group)
validate_string
(
$target_file_mode)
validate_bool
(
$refresh_icinga2_service)
#If the refresh_icinga2_service parameter is set to true...
if
$refresh_icinga2_service
==
true
{
file
{
"${target_dir}/${target_file_name}"
:
ensure
=>
$target_file_ensure,
owner
=>
$target_file_owner,
group
=>
$target_file_group,
mode
=>
$target_file_mode,
content
=>
template
(
'icinga2/object_sysloglogger.conf.erb'
),
#...notify the Icinga 2 daemon so it can restart and pick up changes made to this config file...
notify
=>
Service
[
'icinga2'
],
}
}
#...otherwise, use the same file resource but without a notify => parameter:
else
{
file
{
"${target_dir}/${target_file_name}"
:
ensure
=>
$target_file_ensure,
owner
=>
$target_file_owner,
group
=>
$target_file_group,
mode
=>
$target_file_mode,
content
=>
template
(
'icinga2/object_sysloglogger.conf.erb'
),
}
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jun 4 2025, 6:37 PM (14 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3378119
Attached To
rSPICI Icinga 2 Puppet Module
Event Timeline
Log In to Comment