17 lines
176 B
Bash
Executable File
17 lines
176 B
Bash
Executable File
#!/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
|