#!/bin/sh
#
# bootend

start() {
        echo -n "`cut -f1 -d. /proc/uptime`" > /tmp/boottime-linux
}

stop() {
        echo "Done."
}

restart() {
        stop
        start
}

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

exit $?

