#!/bin/bash

# configuration and startup-script for the Alcatel SpeedTouch USB modem

case $ACTION in

add)
	# start
	mesg SpeedTouch Inserting module.
	modprobe -k speedtch

	mesg SpeedTouch Attempting to start mangement deamon
	/usr/sbin/speedmgmt &
	;;

remove)
	killall speedmgmt
	;;

esac