From b0a83e81230c8a6e83c139307079b33c1cd9441f Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 11 Jun 2009 13:25:47 +0000 Subject: core/busybox-initscripts: added klogd script and mdev stuff we split the syslogd and klogd into different scripts since klog should not be run in vserver while syslog should. the mdev config and helper scripts were moved from alpine-baselayout too --- core/busybox-initscripts/syslog.initd | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'core/busybox-initscripts/syslog.initd') diff --git a/core/busybox-initscripts/syslog.initd b/core/busybox-initscripts/syslog.initd index 63ef5fc69f..390cd6def3 100644 --- a/core/busybox-initscripts/syslog.initd +++ b/core/busybox-initscripts/syslog.initd @@ -1,20 +1,19 @@ #!/sbin/runscript depend() { + need clock hostname klogd provide logger } start() { ebegin "Starting busybox system logging" - start-stop-daemon --start --exec /usr/sbin/klogd -- ${KLOGD_OPTS} - start-stop-daemon --start --exec /usr/sbin/syslogd -- ${SYSLOGD_OPTS} + start-stop-daemon --start --exec /sbin/syslogd -- ${SYSLOGD_OPTS} eend $? } stop () { ebegin "Stopping busybox system logging" - start-stop-daemon --stop --exec /usr/sbin/klogd - start-stop-daemon --stop --exec /usr/sbin/syslogd + start-stop-daemon --stop --exec /sbin/syslogd eend $? } -- cgit v1.2.3