diff options
Diffstat (limited to 'target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog')
-rwxr-xr-x | target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog b/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog index 4c6763bbd..1b0028a08 100755 --- a/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog +++ b/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S09klog @@ -2,15 +2,15 @@ KLOGD=/sbin/klogd -echo -n "Starting klogd:" +echo -n "Starting klogd: " if [ ! -x "${KLOGD}" ]; then - echo " missing" + echo "missing" exit 1 fi -if ${KLOGD} > /dev/null 2> /dev/null; then - echo " done" +if ${KLOGD}; then + echo "done" else - echo " failed" + echo "failed" exit 1 fi |