Merge bk://openembedded@openembedded.bkbits.net/packages
authorPhil Blundell <philb@gnu.org>
Thu, 24 Jun 2004 14:15:47 +0000 (14:15 +0000)
committerPhil Blundell <philb@gnu.org>
Thu, 24 Jun 2004 14:15:47 +0000 (14:15 +0000)
into stealth.(none):/home/pb/oe/oe-packages

2004/06/24 15:15:32+01:00 (none)!pb
need to use -n rather than -x with start-stop-daemon

BKrev: 40dae213GxEl_L2pRr-3FZCa8MEriQ

busybox/busybox-1.00-pre10/syslog
busybox/busybox_1.00-pre10.oe

index e69de29..5c46a28 100644 (file)
@@ -0,0 +1,34 @@
+#! /bin/sh
+#
+# syslog       init.d script for busybox syslogd/klogd
+#              Written by Robert Griebl <sandman@handhelds.org>
+#
+
+# log to remote host
+# SYSLOG_ARGS="-R remote.host"
+
+# log to 16K shm circular buffer
+SYSLOG_ARGS="-C"
+
+set -e
+
+case "$1" in
+  start)
+       echo -n "Starting syslogd/klogd: "
+       start-stop-daemon -S -b -n syslogd -a /sbin/syslogd -- -n $SYSLOG_ARGS
+       start-stop-daemon -S -b -n klogd -a /sbin/klogd -- -n
+       echo "done"
+       ;;
+  stop)
+       echo -n "Stopping syslogd/klogd: "
+       start-stop-daemon -K -n syslogd
+       start-stop-daemon -K -n klogd
+       echo "done"
+       ;;
+  *)
+       echo "Usage: syslog {start|stop}" >&2
+       exit 1
+       ;;
+esac
+
+exit 0
index f32469c..c64a400 100644 (file)
@@ -1,4 +1,4 @@
-PR = "r3"
+PR = "r4"
 LICENSE = "GPL"
 DESCRIPTION = "BusyBox version ${PV}. \
 BusyBox combines tiny versions of many common UNIX utilities into a single \