#! /bin/sh set -e case "$1" in start) ;; stop) echo -n "Removing USB-UHCI to prevent reboot hang..." /sbin/rmmod usb-uhci echo "." ;; *) echo "Usage: /etc/init.d/fan {start|stop}" exit 1 esac exit 0