diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-30 12:57:59 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-30 12:57:59 +0000 |
commit | 841c6823ac8a3f1e17af457722c8b7ea2abf8cb4 (patch) | |
tree | cba956c81427d13e20dd99b5ee0f96274f6303f0 | |
parent | f0f794a6fcc06cc8fd2b68fa8ce7900e1059453f (diff) | |
download | alpine-conf-841c6823ac8a3f1e17af457722c8b7ea2abf8cb4.zip |
setup-disk: check if the devce itself is mounted
this will filter out loop0 device
-rw-r--r-- | setup-disk.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setup-disk.in b/setup-disk.in index 33cc868..c11d20c 100644 --- a/setup-disk.in +++ b/setup-disk.in @@ -149,6 +149,7 @@ has_mounted_part() { # parse /proc/mounts for mounted devices for p in $(awk '$1 ~ /^\/dev\// {gsub("/dev/", "", $1); print $1}' \ /proc/mounts); do + [ "$p" = "$1" ] && return 0 [ -e /sys/block/$1/$p ] && return 0 done return 1 |