OBS-URL: https://build.opensuse.org/package/show/Base:System/rsyslog?expand=0&rev=369
15 lines
429 B
Plaintext
15 lines
429 B
Plaintext
#
|
|
# acpid messages into separate file and stop their further processing
|
|
#
|
|
# => all acpid messages for debuging (uncomment if needed):
|
|
#if ($programname == 'acpid' or $syslogtag == '[acpid]:') then \
|
|
# -/var/log/acpid
|
|
#
|
|
# => up to notice (skip info and debug)
|
|
if ($programname == 'acpid' or $syslogtag == '[acpid]:') and \
|
|
($syslogseverity <= 5 /* notice */) \
|
|
then {
|
|
-/var/log/acpid
|
|
stop
|
|
}
|