summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lutgens <lamer@gentoo.org>2001-09-01 19:53:58 +0000
committerBen Lutgens <lamer@gentoo.org>2001-09-01 19:53:58 +0000
commit69efdda4f7a397a339f51fc2e4055fde06689b27 (patch)
tree97feaca80ecefc9ce8ece065958b87840d108ced /sys-apps/sysklogd
parentXinetd is finally finished. rc6 and rc5 are both currently support, along wit... (diff)
downloadgentoo-2-69efdda4f7a397a339f51fc2e4055fde06689b27.tar.gz
gentoo-2-69efdda4f7a397a339f51fc2e4055fde06689b27.tar.bz2
gentoo-2-69efdda4f7a397a339f51fc2e4055fde06689b27.zip
added a syslog.conf
Diffstat (limited to 'sys-apps/sysklogd')
-rw-r--r--sys-apps/sysklogd/files/syslog.conf75
-rw-r--r--sys-apps/sysklogd/sysklogd-1.4-r3.ebuild4
2 files changed, 78 insertions, 1 deletions
diff --git a/sys-apps/sysklogd/files/syslog.conf b/sys-apps/sysklogd/files/syslog.conf
new file mode 100644
index 000000000000..6b0ab2323ef1
--- /dev/null
+++ b/sys-apps/sysklogd/files/syslog.conf
@@ -0,0 +1,75 @@
+# /etc/syslog.conf Configuration file for syslogd.
+#
+# For more information see syslog.conf(5)
+# manpage.
+# This is from Debian, we are using it for now
+# Daniel Robbins, 5/15/99
+
+#
+# First some standard logfiles. Log by facility.
+#
+
+auth,authpriv.* /var/log/auth.log
+*.*;auth,authpriv.none -/var/log/syslog
+#cron.* /var/log/cron.log
+daemon.* -/var/log/daemon.log
+kern.* -/var/log/kern.log
+lpr.* -/var/log/lpr.log
+mail.* /var/log/mail.log
+user.* -/var/log/user.log
+uucp.* -/var/log/uucp.log
+local6.debug /var/log/imapd.log
+
+#
+# Logging for the mail system. Split it up so that
+# it is easy to write scripts to parse these files.
+#
+mail.info -/var/log/mail.info
+mail.warn -/var/log/mail.warn
+mail.err /var/log/mail.err
+
+# Logging for INN news system
+#
+news.crit /var/log/news/news.crit
+news.err /var/log/news/news.err
+news.notice -/var/log/news/news.notice
+
+#
+# Some `catch-all' logfiles.
+#
+*.=debug;\
+ auth,authpriv.none;\
+ news.none;mail.none -/var/log/debug
+*.=info;*.=notice;*.=warn;\
+ auth,authpriv.none;\
+ cron,daemon.none;\
+ mail,news.none -/var/log/messages
+
+#
+# Emergencies are sent to everybody logged in.
+#
+*.emerg *
+
+#
+# I like to have messages displayed on the console, but only on a virtual
+# console I usually leave idle.
+#
+#daemon,mail.*;\
+# news.=crit;news.=err;news.=notice;\
+# *.=debug;*.=info;\
+# *.=notice;*.=warn /dev/tty8
+
+# The named pipe /dev/xconsole is for the `xconsole' utility. To use it,
+# you must invoke `xconsole' with the `-file' option:
+#
+# $ xconsole -file /dev/xconsole [...]
+#
+# NOTE: adjust the list below, or you'll go crazy if you have a reasonably
+# busy site..
+#
+#daemon.*,mail.*;\
+# news.crit;news.err;news.notice;\
+# *.=debug;*.=info;\
+# *.=notice;*.=warn |/dev/xconsole
+
+local2.* -/var/log/ppp.log
diff --git a/sys-apps/sysklogd/sysklogd-1.4-r3.ebuild b/sys-apps/sysklogd/sysklogd-1.4-r3.ebuild
index 29779bfe66cb..1aa1cd793d22 100644
--- a/sys-apps/sysklogd/sysklogd-1.4-r3.ebuild
+++ b/sys-apps/sysklogd/sysklogd-1.4-r3.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Daniel Robbins <drobbins@gentoo.org>, Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysklogd/sysklogd-1.4-r3.ebuild,v 1.1 2001/08/30 05:19:24 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysklogd/sysklogd-1.4-r3.ebuild,v 1.2 2001/09/01 19:53:58 lamer Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Standard log daemons"
@@ -29,6 +29,8 @@ src_install() {
dodoc ANNOUNCE CHANGES COPYING MANIFEST NEWS README.1st README.linux
exeinto /etc/init.d
newexe ${FILESDIR}/sysklogd.new
+ insinto /etc
+ doins ${FILESDIR}/syslog.conf
}