installer.sh.in: sort filesystems by mountpoint

fixes #131
fixes #323
This commit is contained in:
classabbyamp 2023-04-07 20:35:07 -04:00 committed by classabbyamp
parent 061606be11
commit e50aaaccc4
1 changed files with 3 additions and 3 deletions

View File

@ -1039,7 +1039,7 @@ as FAT32, mountpoint /boot/efi and at least with 100MB of size." ${MSGBOXSIZE}
create_filesystems() {
local mnts dev mntpt fstype fspassno mkfs size rv uuid
mnts=$(grep -E '^MOUNTPOINT.*' $CONF_FILE)
mnts=$(grep -E '^MOUNTPOINT.*' $CONF_FILE | sort -k 5)
set -- ${mnts}
while [ $# -ne 0 ]; do
dev=$2; fstype=$3; mntpt="$5"; mkfs=$6
@ -1109,7 +1109,7 @@ failed to mount $dev on ${mntpt}! check $LOG for errors." ${MSGBOXSIZE}
done
# mount all filesystems in target rootfs
mnts=$(grep -E '^MOUNTPOINT.*' $CONF_FILE)
mnts=$(grep -E '^MOUNTPOINT.*' $CONF_FILE | sort -k 5)
set -- ${mnts}
while [ $# -ne 0 ]; do
dev=$2; fstype=$3; mntpt="$5"
@ -1149,7 +1149,7 @@ umount_filesystems() {
echo "Unmounting $TARGETDIR/$f..." >$LOG
umount $TARGETDIR/$f >$LOG 2>&1
done
local mnts="$(grep -E '^MOUNTPOINT.*$' $CONF_FILE)"
local mnts="$(grep -E '^MOUNTPOINT.*$' $CONF_FILE | sort -r -k 5)"
set -- ${mnts}
while [ $# -ne 0 ]; do
local dev=$2; local fstype=$3; local mntpt=$5