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

17 lines
176 B
Plaintext
Raw Normal View History

2008-03-06 19:59:14 +01:00
#!/bin/sh
KLOGD=/sbin/klogd
echo -n "Starting klogd: "
if [ ! -x "${KLOGD}" ]; then
echo "missing"
exit 1
fi
if ${KLOGD}; then
echo "done"
else
echo "failed"
exit 1
fi