From 7bcbc518f1b9db1281d85c039f8f5c0f4dfd471e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20M=C3=BCller?= Date: Tue, 20 Jul 2021 11:30:00 +0000 Subject: [PATCH] Update util-iso-mount.sh --- lib/util-iso-mount.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/util-iso-mount.sh b/lib/util-iso-mount.sh index dc1dc2c..37331c8 100644 --- a/lib/util-iso-mount.sh +++ b/lib/util-iso-mount.sh @@ -73,10 +73,8 @@ umount_fs(){ #umount "${FS_ACTIVE_MOUNTS[@]}" for i in "${FS_ACTIVE_MOUNTS[@]}" do - cat /proc/mounts info "umount: [%s]" "$i" check_umount $i - cat /proc/mounts done unset FS_ACTIVE_MOUNTS rm -rf "${mnt_dir}/work" @@ -84,10 +82,8 @@ umount_fs(){ mount_folders=$(grep "${work_dir}" /proc/mounts | awk '{print$2}' | sort -r) for i in $mount_folders do - cat /proc/mounts info "umount: [%s]" "$i" check_umount $i - cat /proc/mounts done cat /proc/mounts }