#!/sbin/sh
#
# work around filemgr /tmp/.removable bug by creating it at boot.
#
PATH=/usr/bin:/bin

case $1 in 
'start')
        rm -rf /tmp/.removable
        mkdir /tmp/.removable
        chmod a+rwxt /tmp/.removable
        ;;
'stop')  
        rm -rf /tmp/.removable #what the hell, its something to do.
        ;;
*)
        echo "usage: $0 {start|stop}"
        ;;
esac
