diff options
author | 1996-12-15 19:59:27 +0000 | |
---|---|---|
committer | 1996-12-15 19:59:27 +0000 | |
commit | f13fa67274840bbb6139d1abb7737c0bc60f78a8 (patch) | |
tree | 35602715b2c0a663bcdaa03282d5ab5a783d53b2 | |
parent | Log to LOG_AUTHPRIV not LOG_LOCAL2 (which conflicts with chat) (diff) | |
download | wireguard-openbsd-f13fa67274840bbb6139d1abb7737c0bc60f78a8.tar.xz wireguard-openbsd-f13fa67274840bbb6139d1abb7737c0bc60f78a8.zip |
Now with more fiber. Now is more of a "real world" config. Some ideas
taken from NetBSD.
-rw-r--r-- | etc/syslog.conf | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/etc/syslog.conf b/etc/syslog.conf index c423610f25f..a551e50aca1 100644 --- a/etc/syslog.conf +++ b/etc/syslog.conf @@ -1,11 +1,25 @@ -# $OpenBSD: syslog.conf,v 1.2 1996/05/26 10:25:31 deraadt Exp $ +# $OpenBSD: syslog.conf,v 1.3 1996/12/15 19:59:27 millert Exp $ # -*.err;kern.debug;auth.notice;mail.crit /dev/console -*.notice;kern.debug;lpr,auth.info;mail.crit /var/log/messages -mail.info /var/log/maillog -lpr.info /var/log/lpd-errs -cron.info /var/cron/log -*.err root -*.notice;auth.debug root -*.alert root -*.emerg * + +*.err;kern.debug;auth.notice;authpriv.none;mail.crit /dev/console +*.notice;auth,authpriv,cron,ftp,kern,lpr,mail,user.none /var/log/messages +kern.debug,user.info,syslog.info /var/log/messages +auth.info /var/log/authlog +authpriv.debug /var/log/secure +cron.info /var/cron/log +daemon.info /var/log/daemon +ftp.info /var/log/xferlog +lpr.debug /var/log/lpd-errs +mail.info /var/log/maillog +#local2.debug /var/log/chat +#uucp.info /var/log/uucp + +*.err root +*.notice;auth.debug root +*.alert root +*.emerg * + +# Uncomment to log to a central host named "loghost" +#*.notice;auth,authpriv,cron,ftp,kern,lpr,mail,user.none @loghost +#kern.debug,user.info,syslog.info @loghost +#auth.info,authpriv.debug,daemon.info @loghost |