Sophie

Sophie

distrib > Mageia > 9 > i586 > by-pkgid > 4059bfc13bd9ebd7ee31e446c4da4903 > files > 28

os-prober-1.81-2.mga9.src.rpm

Index: os-prober/common.sh
===================================================================
--- os-prober.orig/common.sh
+++ os-prober/common.sh
@@ -336,3 +336,12 @@ linux_mount_boot () {
 
 	mountboot="$bootpart $mounted"
 }
+
+umount() {
+	if ! command umount $@ 2> /dev/null; then
+		error "umount error, retrying after 1 sec"
+		sleep 1
+		command umount $@
+	fi
+}
+