Use blkid in place of lsblk

This commit is contained in:
Benoît S. 2018-04-10 15:14:54 +02:00
parent a2fef6cb9b
commit 75e69e1440

View file

@ -745,10 +745,10 @@ if [ -e /etc/debian_version ]; then
fi
if [ "$IS_DUPLICATE_FS_LABEL" = 1 ]; then
# Only on systems which have lsblk
if [ -x "$(which lsblk)" ]; then
# Do it only if thereis blkid binary
if [ -x "$(which blkid)" ]; then
tmpFile=$(mktemp -p /tmp)
for part in $(lsblk -n -o LABEL); do
for part in $(blkid | grep -v raid_member | grep -Eo 'LABEL=".*"' | cut -d'"' -f2); do
echo "$part" >> "$tmpFile"
done
tmpOutput=$(sort < "$tmpFile" | uniq -d)