#!/bin/bash
#
# thebridge.init for version 0.96.  starts or stops the bridge.
# This file should be placed in /etc/rc.d/init.d/
#
# chkconfig: - 60 50
# description: thebridge is a iLink/EchoLink compatible conference bridge
# processname: tbd
# 

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -x /usr/libexec/tbd ] || exit 0


RETVAL=0
prog="tbd"

start() {
        # Start daemons.
        echo -n $"Starting $prog: "
        daemon /usr/libexec/tbd $OPTS
        RETVAL=$?
        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/thebridge
        echo
        return $RETVAL
}

stop() {
        # Stop daemons.
        echo -n $"Shutting down $prog: "
        killproc $prog
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/thebridge
        return $RETVAL
}

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  restart|reload)
        stop
        start
        RETVAL=$?
        ;;
  condrestart)
        if [ -f /var/lock/subsys/thebridge ]; then
            stop
            start
            RETVAL=$?
        fi
        ;;
  status)
        status $prog
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $0 {start|stop|restart|condrestart|status}"
        exit 1
esac

exit $RETVAL
