don't try to automount loopback devices (#1011)
authorFelix Fietkau <nbd@openwrt.org>
Wed, 20 Dec 2006 05:29:52 +0000 (05:29 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 20 Dec 2006 05:29:52 +0000 (05:29 +0000)
SVN-Revision: 5877

package/base-files/files/etc/hotplug.d/block/01-mount

index 5ed3ef060b5ad38e32794a835b2bd839a8e8d590..a34580cb97208804f74629f5fe0512069e98a619 100755 (executable)
@@ -13,7 +13,7 @@ add)
        }; done
        echo
        
-       [ ${DEV%%[0-9]} != ${DEV} ] && {
+       [ ${DEV%%[0-9]} != ${DEV} -a ${DEV%%[0-9]} != "loop" ] && {
                mkdir -p /tmp/$DEV
                mount /dev/$DEV /tmp/$DEV -t auto -o sync
        }