diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-07 07:04:13 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-07 07:04:13 +0000 |
commit | 7397ea3794d4d67e5cf48309841c3874a7dcfa3c (patch) | |
tree | eb6365a57cae27f9a5c1dd24cecb0fc1a5fb89ec /rsyslog.conf | |
parent | 328056cfab448bf305238cffe48862beee0a2a87 (diff) | |
download | rsyslog-7397ea3794d4d67e5cf48309841c3874a7dcfa3c.tar.gz rsyslog-7397ea3794d4d67e5cf48309841c3874a7dcfa3c.tar.xz rsyslog-7397ea3794d4d67e5cf48309841c3874a7dcfa3c.zip |
preparing for initial 3.10.0 release
Diffstat (limited to 'rsyslog.conf')
-rw-r--r-- | rsyslog.conf | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/rsyslog.conf b/rsyslog.conf index 9d34c805..10a72d1a 100644 --- a/rsyslog.conf +++ b/rsyslog.conf @@ -1,10 +1,20 @@ +# rsyslog v3: load input modules +# If you do not load inputs, nothing happens! +# You may need to set the module load path if modules are not found. + +$ModLoad immark # provides --MARK-- message capability +$ModLoad imud # provides UDP syslog reception +$ModLoad imtcp # provides TCP syslog reception and GSS-API (if compiled to support it) +$ModLoad imuxsock # provides support for local system logging (e.g. via logger command) +$ModLoad imklog # kernel logging (formerly provided by rklogd) + # Log all kernel messages to the console. # Logging much else clutters up the screen. #kern.* /dev/console # Log anything (except mail) of level info or higher. # Don't log private authentication messages! -*.info;mail.none;authpriv.none;cron.none /var/log/messages +*.info;mail.none;authpriv.none;cron.none -/var/log/messages # The authpriv file has restricted access. authpriv.* /var/log/secure @@ -14,13 +24,13 @@ mail.* -/var/log/maillog # Log cron stuff -cron.* /var/log/cron +cron.* -/var/log/cron # Everybody gets emergency messages *.emerg * # Save news errors of level crit and higher in a special file. -uucp,news.crit /var/log/spooler +uucp,news.crit -/var/log/spooler # Save boot messages also to boot.log local7.* /var/log/boot.log |