From a44862c96c308fc0765fac38ad390ed070ad8b51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20M=C3=BCller?= Date: Tue, 20 Jul 2021 12:07:16 +0000 Subject: [PATCH] Update util-mount.sh --- lib/util-mount.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/util-mount.sh b/lib/util-mount.sh index 5dc014d..a707cb7 100644 --- a/lib/util-mount.sh +++ b/lib/util-mount.sh @@ -117,7 +117,7 @@ chroot_mount_partitions(){ } chroot_mount() { - info "mount: [%s]" "$2" + #info "mount: [%s]" "$2" mount "$@" && CHROOT_ACTIVE_MOUNTS=("$2" "${CHROOT_ACTIVE_MOUNTS[@]}") } @@ -167,13 +167,13 @@ chroot_part_umount() { } chroot_api_umount() { - info "umount: [%s]" "${CHROOT_ACTIVE_MOUNTS[@]}" + #info "umount: [%s]" "${CHROOT_ACTIVE_MOUNTS[@]}" umount "${CHROOT_ACTIVE_MOUNTS[@]}" unset CHROOT_ACTIVE_MOUNTS } -chroot_api_efi_umount() { - info "umount: [%s]" "${CHROOT_ACTIVE_MOUNTS[@]}" +chroot_api_efi_umount() { + #info "umount: [%s]" "${CHROOT_ACTIVE_MOUNTS[@]}" umount "${CHROOT_ACTIVE_MOUNTS[@]}" unset CHROOT_ACTIVE_MOUNTS }