summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/live-helpers18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/live-helpers b/scripts/live-helpers
index d5ad29f..0d97d10 100644
--- a/scripts/live-helpers
+++ b/scripts/live-helpers
@@ -76,24 +76,6 @@ is_supported_fs ()
get_fstype ()
{
- local FSTYPE
- local FSSIZE
-
- # fstype misreports LUKS devices
- if is_luks "${1}"
- then
- /lib/udev/vol_id -t ${1} 2>/dev/null
- return
- fi
-
- eval $(fstype ${1} 2>/dev/null)
-
- if [ "${FSTYPE}" != "unknown" ]
- then
- echo ${FSTYPE}
- return 0
- fi
-
/lib/udev/vol_id -t ${1} 2>/dev/null
}