kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog

17 lines
203 B
Plaintext
Raw Normal View History

2007-07-29 09:17:01 +02:00
#!/bin/sh
KLOGD=/sbin/klogd
echo -n "Starting klogd:"
if [ ! -x "${KLOGD}" ]; then
echo " missing"
exit 1
fi
if ${KLOGD} > /dev/null 2> /dev/null; then
echo " done"
else
echo " failed"
exit 1
fi