system/syslog-ng: Config file update

Signed-off-by: Mario Preksavec <mario@slackware.hr>
This commit is contained in:
Mario Preksavec 2019-10-03 20:24:55 +02:00 committed by Willy Sudiarto Raharjo
parent 9a5a6375ef
commit 8b8f4c8fc4
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 11 additions and 2 deletions

View file

@ -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

View file

@ -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'.