diff options
Diffstat (limited to 'extra/sysklogd/klogd')
-rwxr-xr-x | extra/sysklogd/klogd | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/extra/sysklogd/klogd b/extra/sysklogd/klogd new file mode 100755 index 000000000..690e13ab4 --- /dev/null +++ b/extra/sysklogd/klogd @@ -0,0 +1,37 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +PID=`pidof -o %PPID /usr/sbin/klogd` +case "$1" in + start) + stat_busy "Starting Kernel Logger" + [ -z "$PID" ] && /usr/sbin/klogd -c 4 + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon klogd + stat_done + fi + ;; + stop) + stat_busy "Stopping Kernel Logger" + [ ! -z "$PID" ] && kill $PID &> /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm -f /var/run/klogd.pid + rm_daemon klogd + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac +exit 0 |