Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8394678
syslog.pp
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
786 B
Subscribers
None
syslog.pp
View Options
# == Class: icinga2::feature::syslog
#
# This module configures the Icinga2 feature syslog.
#
# === Parameters
#
# Document parameters here.
#
# [*ensure*]
# Set to present enables the feature syslog, absent disabled it. Default to present.
#
# [*severity*]
# You can choose the log severity between information, notice, warning or debug.
# Default to information.
#
# === Authors
#
# Icinga Development Team <info@icinga.org>
#
class
icinga2
::
feature
::
syslog
(
$ensure
=
present
,
$severity
=
'warning'
,
)
{
validate_re
(
$ensure,
[
'^present$'
,
'^absent$'
],
"${ensure} isn't supported. Valid values are 'present' and 'absent'."
)
validate_re
(
$severity,
[
'^information$'
,
'^notice$'
,
'^warning$'
,
'^debug$'
])
icinga2
::
feature
{
'syslog'
:
ensure
=>
$ensure,
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jun 4 2025, 7:27 PM (9 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3399172
Attached To
rSPICI Icinga 2 Puppet Module
Event Timeline
Log In to Comment