#!/bin/sh
#
# Startup script for isdn4es
#
# description: isdn4es is needed to allow the usage of passive ISDN-cards   \
#        with e-smith (http://www.e-smith.net/).
                
# Source function library.
. /etc/rc.d/init.d/functions
# See how we were called.
case "$1" in
	start)
		echo -n "Starting isdn4es: "
		modprobe hisax
		echo
		;;
	stop)
		echo -n "Shutting down isdn4es: "
		modprobe -r hisax
		echo
		;;
	restart)
		$0 stop
		$0 start
		;;
	*)
		echo "Usage: $0 {start|stop|restart}"
		exit 1
esac
                       
exit 0
