#!/bin/sh
# chkconfig: 2345 04 96
### BEGIN INIT INFO
# Provides:          testusb
# Required-Start:    modules $local_fs
# Required-Stop:     
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: setup testusb at boot time
# Description:       setup testusb at boot time
# X-Start-Before:    
# X-Stop-After:      
# X-Timesys-Start-Number:  04
# X-Timesys-Stop-Number:  96
### END INIT INFO

export PATH=/bin:/sbin:/usr/bin:/usr/sbin

case "$1" in
	start)
		mount -t usbfs usbfs /proc/bus/usb  2>/dev/null
	;;
	*)
	;;
esac

