#! /bin/sh -e
### BEGIN INIT INFO
# Provides:          xtell
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
### END INIT INFO
#
# This file was automatically customized by debmake on Mon, 23 Dec 1996 20:27:43 -0800
#
# Written by Miquel van Smoorenburg <miquels@drinkel.ow.org>.
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>.
# Modified for Debian by Christoph Lameter <clameter@debian.org>


PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/sbin/xtelld
# The following value is extracted by debstd to figure out how to generate
# the postinst script. Edit the field to change the way the script is
# registered through update-rc.d (see the manpage for update-rc.d!)
FLAGS="defaults 50"

test -f $DAEMON || exit 0

if [ -f /etc/xtelldrc ]; then
  . /etc/xtelldrc
fi

if [ "$FROMINETD" != "yes" ]; then

case "$1" in
  start)
    echo "Starting xtelld..."
    start-stop-daemon --chuid xtelld:tty --start --quiet --exec $DAEMON
    ;;
  stop)
    start-stop-daemon --stop --verbose --exec $DAEMON
	sleep 2
    ;;
  restart|force-reload)
    echo "Restarting $DAEMON..."
    start-stop-daemon --stop --quiet --exec $DAEMON
    sleep 2
    start-stop-daemon --chuid xtelld:tty --start --quiet --exec $DAEMON
    ;;
  *)
    echo "Usage: /etc/init.d/$0 {start|stop|restart|force-reload}"
    exit 1
    ;;
esac

fi

exit 0
