[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [hobbit] start up script for automatic loading



This is the script that I use on SLES9:

#! /bin/sh
### BEGIN INIT INFO
# Provides:       hobbit
# Required-Start: network
# Required-Stop:  network
# Default-Start:  3 5
# Default-Stop:   3
# Description:    Start the hobbit network monitor
### END INIT INFO

case "$1" in
    start)
        echo "Starting Hobbit"
        su - hobbit -c "cd /home/hobbit/server; ./hobbit.sh start"
        ;;
    stop)
        echo "Stopping Hobbit"
        su - hobbit -c "cd /home/hobbit/server; ./hobbit.sh stop"
        ;;
    restart)
        $0 stop
        $0 start
        rc_status
        ;;
    *)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
        ;;
esac


Don Munyak wrote:
Hello,

I'd like to automate startup of hobbit at boot time.

If I make a link from /usr/local/etc/rc.d/hobbit.sh to the startup script
in /usr/local/...hobbit/server/hobbit.sh,  how do I get it to start
using the user account 'hobbit' ?

Is there another preferred technic ?

Thanks

To unsubscribe from the hobbit list, send an e-mail to
hobbit-unsubscribe (at) hswn.dk



-- Rich Smrcina VM Assist, Inc. Phone: 414-491-6001 Ans Service: 360-715-2467 rich.smrcina at vmassist.com

Catch the WAVV!  http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007