diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-04-12 09:49:09 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-04-12 09:49:09 +0000 |
commit | ab8cb8d959a713366411576bf2cd12740c792bdd (patch) | |
tree | 04dc2ec79bf6c55d1585d118331292d6e17f6c06 | |
parent | 9b62c7eb9d767956f9bc4066341b24077dce4332 (diff) | |
download | upstream-ab8cb8d959a713366411576bf2cd12740c792bdd.tar.gz upstream-ab8cb8d959a713366411576bf2cd12740c792bdd.tar.bz2 upstream-ab8cb8d959a713366411576bf2cd12740c792bdd.zip |
remove automounting script for block devices - it's causing more problems than it solves
SVN-Revision: 6937
-rwxr-xr-x | package/base-files/files/etc/hotplug.d/block/01-mount | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/package/base-files/files/etc/hotplug.d/block/01-mount b/package/base-files/files/etc/hotplug.d/block/01-mount deleted file mode 100755 index a34580cb97..0000000000 --- a/package/base-files/files/etc/hotplug.d/block/01-mount +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -# Copyright (C) 2006 OpenWrt.org - -DEV=${DEVPATH##*/} -{ -case "$ACTION" in -add) - echo -ne "waiting for $DEV" - while [ ! -b /dev/$DEV ]; do { - echo -ne "." - sleep 1 - [ $((++time)) -gt 10 ] && break - }; done - echo - - [ ${DEV%%[0-9]} != ${DEV} -a ${DEV%%[0-9]} != "loop" ] && { - mkdir -p /tmp/$DEV - mount /dev/$DEV /tmp/$DEV -t auto -o sync - } - ;; -remove) - umount /tmp/$DEV && rm -f /dev/$DEV /tmp/$DEV - ;; -esac -} 2>&1 | logger |