kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S08syslog
2007-08-17 13:01:49 +00:00

25 lines
314 B
Bash
Executable File

#!/bin/sh
SYSLOGD=/sbin/syslogd
echo -n "Starting syslogd: "
if [ ! -x "${SYSLOGD}" ]; then
echo "missing"
exit 1
fi
if ${SYSLOGD}; then
echo "done"
else
echo "failed"
exit 1
fi
echo -n "Log messages to syslog: "
if echo 4 4 1 7 > /proc/sys/kernel/printk; then
echo "done"
else
echo "failed"
exit 1
fi