#! /bin/sh

DESC=irattach

case "$1" in
  start)
        echo -n "Starting $DESC: "
		irattach /dev/ttyS1 > /dev/null 2>&1 &
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
		killall irattach > /dev/null 2>&1
        echo "$NAME."
        ;;
  restart|force-reload)
        echo -n "Restarting $DESC: "
		irattach /dev/ttyS1 > /dev/null 2>&1 &
        sleep 1
		killall irattach > /dev/null 2>&1
        echo "$NAME."
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac