summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/sysklogd
diff options
context:
space:
mode:
authorYu Ke <ke.yu@intel.com>2010-10-19 15:15:17 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-10-19 20:29:59 +0100
commit4f7d621db6943cd32c7c4ba41a96db72c1d91e4c (patch)
tree40ca4b3097534aec32a5a5a9d9ae5f2761a7bcaf /meta/recipes-extended/sysklogd
parentc41fe30640fe2f27df8de7b53112bd492cd5468f (diff)
downloadpoky-4f7d621db6943cd32c7c4ba41a96db72c1d91e4c.tar.gz
sysklogd: correct the syslog link and conf file
This commit fix [BUGID #482] Two issues cause bug 482: - firsty, there are two version of syslog: sysklogd and busybox. the busybox one is directly installed as /etc/init.d/syslog, and the sysklogd one is installed by update-alternative. the update-alternative will thus fail because the /etc/init.d/syslog (busybox one) already exist and not a link. so the correct way is to install busybox one by update-alternative, the layout will be: /etc/init.d/syslog.busybox /etc/init.d/syslog.sysklogd /etc/init.d/syslog -> syslog.busybox or /etc/init.d/syslog -> syslog.sysklogd - secondly, sysklogd default conf is not comply with poky. Its dir /var/adm/ does not exist. Check the debian /etc/syslog.conf and find it is more sophiscated and suitable, so port /etc/syslog.conf from debian. Signed-off-by: Yu Ke <ke.yu@intel.com>
Diffstat (limited to 'meta/recipes-extended/sysklogd')
-rw-r--r--meta/recipes-extended/sysklogd/files/syslog.conf70
-rw-r--r--meta/recipes-extended/sysklogd/sysklogd.inc3
-rw-r--r--meta/recipes-extended/sysklogd/sysklogd_1.5.bb2
3 files changed, 73 insertions, 2 deletions
diff --git a/meta/recipes-extended/sysklogd/files/syslog.conf b/meta/recipes-extended/sysklogd/files/syslog.conf
new file mode 100644
index 0000000000..795d73545a
--- /dev/null
+++ b/meta/recipes-extended/sysklogd/files/syslog.conf
@@ -0,0 +1,70 @@
1# /etc/syslog.conf Configuration file for syslogd.
2#
3# Ported from debian by Yu Ke <ke.yu@intel.com>
4#
5
6#
7# First some standard logfiles. Log by facility.
8#
9
10auth,authpriv.* /var/log/auth.log
11*.*;auth,authpriv.none -/var/log/syslog
12#cron.* /var/log/cron.log
13daemon.* -/var/log/daemon.log
14kern.* -/var/log/kern.log
15lpr.* -/var/log/lpr.log
16mail.* -/var/log/mail.log
17user.* -/var/log/user.log
18
19#
20# Logging for the mail system. Split it up so that
21# it is easy to write scripts to parse these files.
22#
23mail.info -/var/log/mail.info
24mail.warn -/var/log/mail.warn
25mail.err /var/log/mail.err
26
27# Logging for INN news system
28#
29news.crit /var/log/news/news.crit
30news.err /var/log/news/news.err
31news.notice -/var/log/news/news.notice
32
33#
34# Some `catch-all' logfiles.
35#
36*.=debug;\
37 auth,authpriv.none;\
38 news.none;mail.none -/var/log/debug
39*.=info;*.=notice;*.=warn;\
40 auth,authpriv.none;\
41 cron,daemon.none;\
42 mail,news.none -/var/log/messages
43
44#
45# Emergencies are sent to everybody logged in.
46#
47*.emerg *
48
49#
50# I like to have messages displayed on the console, but only on a virtual
51# console I usually leave idle.
52#
53#daemon,mail.*;\
54# news.=crit;news.=err;news.=notice;\
55# *.=debug;*.=info;\
56# *.=notice;*.=warn /dev/tty8
57
58# The named pipe /dev/xconsole is for the `xconsole' utility. To use it,
59# you must invoke `xconsole' with the `-file' option:
60#
61# $ xconsole -file /dev/xconsole [...]
62#
63# NOTE: adjust the list below, or you'll go crazy if you have a reasonably
64# busy site..
65#
66daemon.*;mail.*;\
67 news.err;\
68 *.=debug;*.=info;\
69 *.=notice;*.=warn |/dev/xconsole
70
diff --git a/meta/recipes-extended/sysklogd/sysklogd.inc b/meta/recipes-extended/sysklogd/sysklogd.inc
index 76ab707b21..9bd77280aa 100644
--- a/meta/recipes-extended/sysklogd/sysklogd.inc
+++ b/meta/recipes-extended/sysklogd/sysklogd.inc
@@ -18,6 +18,7 @@ RDEPENDS_${PN}_append = " ${@base_conditional("ONLINE_PACKAGE_MANAGEMENT", "none
18SRC_URI = "http://www.infodrom.org/projects/sysklogd/download/sysklogd-${PV}.tar.gz \ 18SRC_URI = "http://www.infodrom.org/projects/sysklogd/download/sysklogd-${PV}.tar.gz \
19 file://no-strip-install.patch \ 19 file://no-strip-install.patch \
20 file://sysklogd \ 20 file://sysklogd \
21 file://syslog.conf \
21 " 22 "
22 23
23INITSCRIPT_NAME = "syslog" 24INITSCRIPT_NAME = "syslog"
@@ -33,7 +34,7 @@ do_install () {
33 mv ${D}${base_sbindir}/syslogd ${D}${base_sbindir}/syslogd.${PN} 34 mv ${D}${base_sbindir}/syslogd ${D}${base_sbindir}/syslogd.${PN}
34 mv ${D}${base_sbindir}/klogd ${D}${base_sbindir}/klogd.${PN} 35 mv ${D}${base_sbindir}/klogd ${D}${base_sbindir}/klogd.${PN}
35 install -d ${D}${sysconfdir} 36 install -d ${D}${sysconfdir}
36 install -m 644 ${S}/syslog.conf ${D}${sysconfdir}/syslog.conf 37 install -m 644 ${WORKDIR}/syslog.conf ${D}${sysconfdir}/syslog.conf
37 install -d ${D}${sysconfdir}/init.d 38 install -d ${D}${sysconfdir}/init.d
38 install -m 755 ${WORKDIR}/sysklogd ${D}${sysconfdir}/init.d/syslog.${PN} 39 install -m 755 ${WORKDIR}/sysklogd ${D}${sysconfdir}/init.d/syslog.${PN}
39} 40}
diff --git a/meta/recipes-extended/sysklogd/sysklogd_1.5.bb b/meta/recipes-extended/sysklogd/sysklogd_1.5.bb
index 8344e272c4..27146c79ad 100644
--- a/meta/recipes-extended/sysklogd/sysklogd_1.5.bb
+++ b/meta/recipes-extended/sysklogd/sysklogd_1.5.bb
@@ -1,2 +1,2 @@
1require sysklogd.inc 1require sysklogd.inc
2PR = "r0" 2PR = "r1"