This commit is contained in:
Xavier Petit 2019-05-03 18:23:45 +01:00 committed by Clément
parent f4a69fecc8
commit da5c41713c
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ set -x
sleep 0.5
# Find the removable F2FS partition
PART=$(lsblk -pro kname,partlabel | grep 01-home)
PART=$(lsblk -pro kname,partlabel | grep 01-home | cut -d' ' -f1)
# Make sure the mountpoints are free
(
@ -42,7 +42,7 @@ then
mount -o noatime "$PART" /mnt
else
# No removable F2FS partition found
PART=$(lsblk -pro kname,partlabel | grep 01-tmp-home)
PART=$(lsblk -pro kname,partlabel | grep 01-tmp-home | cut -d' ' -f1)
if test -z "$PART"
then