summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-16 15:02:49 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-16 15:02:49 +0000
commit0c3bce1653c9800d20531d73da182f804c338a8b (patch)
tree9bd9cffea6641332a8c814198deaac43bf95b947
parent61f13107825f909fe340eff594a5b1523b98db4e (diff)
downloaddrakx-backup-do-not-use-0c3bce1653c9800d20531d73da182f804c338a8b.tar
drakx-backup-do-not-use-0c3bce1653c9800d20531d73da182f804c338a8b.tar.gz
drakx-backup-do-not-use-0c3bce1653c9800d20531d73da182f804c338a8b.tar.bz2
drakx-backup-do-not-use-0c3bce1653c9800d20531d73da182f804c338a8b.tar.xz
drakx-backup-do-not-use-0c3bce1653c9800d20531d73da182f804c338a8b.zip
(getAndSaveAutoInstallFloppy): fix a missing del_loop which caused the
unmounting at end of install to fail
-rw-r--r--perl-install/install_any.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 907886226..2e923ec52 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -735,6 +735,7 @@ sub getAndSaveAutoInstallFloppy {
output("$mountdir/auto_inst.cfg", g_auto_install($replay));
fs::umount($mountdir);
+ c::del_loop($dev);
commands::dd("if=$imagefile", "of=$where", "bs=1440", "count=1024");
}
1;