Sfoglia il codice sorgente

Make sure all filesystems in targetdir are unmounted.

Juan RP 12 anni fa
parent
commit
dfb3ade8c5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      installer.sh.in

+ 1 - 1
installer.sh.in

@@ -683,7 +683,7 @@ mount_filesystems() {
 umount_filesystems() {
     local f
 
-    for f in sys proc dev; do
+    for f in sys/fs/fuse/connections sys proc dev; do
         echo "Unmounting $TARGETDIR/$f..." >$LOG
         umount $TARGETDIR/$f >$LOG 2>&1
     done