#!/bin/sh
# Begin /etc/init.d/sysklogd

#
# Include the functions declared in the /etc/init.d/functions file
#

source $INIT_D/functions

case "$1" in
        start)
 		#no exit_if_any_error because logging will work without
 		#(but hostname will be missing in logs)
 		need $hostname_available        
        
                echo -n "Starting system log daemon..."
                loadproc /usr/sbin/syslogd -m 0 || exit_if_any_error

                echo -n "Starting kernel log daemon..."
                loadproc /usr/sbin/klogd || exit_if_any_error
                ;;

        stop)
                echo -n "Stopping kernel log daemon..."
                killproc klogd

                echo -n "Stopping system log daemon..."
                killproc syslogd
                ;;

        reload)
        	echo -n "Reloading system log daemon configuration file..."
                reloadproc syslogd 1
                ;;

        restart)
                $0 stop
                sleep 1
                $0 start
                ;;

        status)
                statusproc /usr/sbin/syslogd
                statusproc /usr/sbin/klogd
                ;;

        *)
                echo "Usage: $0 {start|stop|reload|restart|status}"
                exit 1
                ;;

esac

exit 0

# End /etc/init.d/sysklogd
