#! /bin/sh

UPID=`pidof udhcpc`
if [ -n "$UPID" ] ; then
	kill -SIGUSR2 $UPID
	kill -SIGHUP $UPID
fi

/bin/umount -a -r 2> /dev/null
