1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-06 18:16:15 +02:00
openwrt-xburst/package/base-files/default/etc/hotplug.d/block/01-mount
nbd e3eab11e63 fix potential data loss issue on failed umount (patch from #942)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5474 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-11-09 02:02:13 +00:00

27 lines
479 B
Bash
Executable File

#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
DEV=${DEVPATH##*/}
{
echo "ACTION=$ACTION DEVPATH=$DEVPATH $0 $*"
case "$ACTION" in
add)
echo -ne "waiting for $DEV"
while [ ! -b /dev/$DEV ]; do {
echo -ne "."
sleep 1
time=$((time+1)); [ $time -gt 10 ] && break
}; done
[ ${DEV%%[0-9]} != ${DEV} ] && {
mkdir -p /tmp/$DEV
mount /dev/$DEV /tmp/$DEV -t auto -o sync
}
;;
remove)
umount /tmp/$DEV && rmdir /tmp/$DEV
rm -f /dev/$DEV /tmp/$DEV
;;
esac
} 2>&1 | logger