Remove force unmount because I think its corrupting the filesystem with unclean dismount.

This commit is contained in:
Tom Alexander
2022-02-26 19:36:06 -05:00
parent 70b4cca0c1
commit 8e2eac5865
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ function cleanup {
done
for (( idx=${#mountedfolders[@]}-1 ; idx>=0 ; idx-- )) ; do
>&2 echo "Unmounting folder ${mountedfolders[idx]}"
umount -f "${mountedfolders[idx]}"
umount "${mountedfolders[idx]}"
done
for f in "${memorydevices[@]}"; do
>&2 echo "Removing memory device $f"