summaryrefslogtreecommitdiff
path: root/scripts/local
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2007-07-04 00:34:42 +0200
committermaximilian attems <maks@debian.org>2007-07-04 00:34:42 +0200
commit5ac61dd320ed9616a7e986fa824f804dbbd626af (patch)
tree143776ea9907859a8e13f14063286cf694234b0d /scripts/local
parent728d6fc95b28254b982395e73153c5c422c81768 (diff)
revert vol_id usage for now, when more matured this can be easily rechanged.
Diffstat (limited to 'scripts/local')
-rw-r--r--scripts/local4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/local b/scripts/local
index 10e2f73..b06ca63 100644
--- a/scripts/local
+++ b/scripts/local
@@ -10,9 +10,9 @@ get_fstype ()
# vol_id has a more complete list of file systems
if [ -x /lib/udev/vol_id ]; then
- FSTYPE=$(/lib/udev/vol_id -t "${FS}" 2> /dev/null)
- else
eval $(fstype "${FS}" 2> /dev/null)
+ else
+ FSTYPE=$(/lib/udev/vol_id -t "${FS}" 2> /dev/null)
fi
RET=$?