Browse Source

Fix bug

pull/104/head
Xavier Petit 6 years ago committed by Clément
parent
commit
da5c41713c
  1. 4
      scripts/system/etc/gdm3/PostLogin/Default

4
scripts/system/etc/gdm3/PostLogin/Default

@ -28,7 +28,7 @@ set -x
sleep 0.5 sleep 0.5
# Find the removable F2FS partition # 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 # Make sure the mountpoints are free
( (
@ -42,7 +42,7 @@ then
mount -o noatime "$PART" /mnt mount -o noatime "$PART" /mnt
else else
# No removable F2FS partition found # 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" if test -z "$PART"
then then

Loading…
Cancel
Save