#!/bin/sh
. /etc/hotplug/hotplug.functions
if [ ! -L /var/run/usb/%proc%bus%usb%* ]; then

	mesg Try to Mount
	mount /mnt/usbstorage
	if [ $? = 0 ]; then
		ln -s /mnt/usbstorage /home/samba/USB_Storage
		ln -s /etc/hotplug/usb/usb-storage.off $REMOVER
		mesg make REMOVER in $REMOVER
	fi

fi