mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
system/syslog-ng: Config file update
Signed-off-by: Mario Preksavec <mario@slackware.hr>
This commit is contained in:
parent
9a5a6375ef
commit
8b8f4c8fc4
2 changed files with 11 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for syslog-ng
|
||||
|
||||
# Copyright 2010, 2012, 2013, 2016, 2017 Mario Preksavec, Zagreb, Croatia
|
||||
# Copyright 2010, 2012, 2013, 2016, 2017, 2019 Mario Preksavec, Zagreb, Croatia
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
# For info about the format of this file, see "man syslog-ng.conf"
|
||||
# Written by Mario Preksavec <mario at slackware dot hr>
|
||||
# Updated by Janos Szigetvari <jszigetvari at gmail dot com>
|
||||
# Thanks to Andrea Biardi <a.biardi at tiscali dot it>
|
||||
|
||||
options {
|
||||
flush_lines(0);
|
||||
|
@ -45,7 +46,15 @@ destination d_debug { file("/var/log/debug"); };
|
|||
destination d_secure { file("/var/log/secure"); };
|
||||
destination d_cron { file("/var/log/cron"); };
|
||||
destination d_maillog { file("/var/log/maillog"); };
|
||||
destination d_usertty { usertty("*"); };
|
||||
destination d_usertty {
|
||||
usertty("*");
|
||||
# Notify all logged-in users; note that, although running as root,
|
||||
# syslog-ng drops some key capabilities at runtime, so the process
|
||||
# must belong to the tty group in order to be able to open /dev/tty*
|
||||
# and /dev/pts/* for writing.
|
||||
# This can be done either by running sylog-ng with "-g tty" or by
|
||||
# adding root to the "tty" group.
|
||||
};
|
||||
destination d_spooler { file("/var/log/spooler"); };
|
||||
|
||||
# Log anything 'info' or higher, but lower than 'warn'.
|
||||
|
|
Loading…
Reference in a new issue