diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-16 15:02:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-16 15:02:49 +0000 |
commit | 0c3bce1653c9800d20531d73da182f804c338a8b (patch) | |
tree | 9bd9cffea6641332a8c814198deaac43bf95b947 | |
parent | 61f13107825f909fe340eff594a5b1523b98db4e (diff) | |
download | drakx-0c3bce1653c9800d20531d73da182f804c338a8b.tar drakx-0c3bce1653c9800d20531d73da182f804c338a8b.tar.gz drakx-0c3bce1653c9800d20531d73da182f804c338a8b.tar.bz2 drakx-0c3bce1653c9800d20531d73da182f804c338a8b.tar.xz drakx-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.pm | 1 |
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; |