diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-07-18 17:18:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-07-18 17:18:31 +0000 |
commit | 60642ca2e3ec60c9bc39ed820bd759e9a58d4d85 (patch) | |
tree | a262d4afaf8210dd3d1cf6fb4b8d187b253e4658 /perl-install/install2.pm | |
parent | 74e57fc68e455eb20d26ba781dc67588ea39d35c (diff) | |
download | drakx-60642ca2e3ec60c9bc39ed820bd759e9a58d4d85.tar drakx-60642ca2e3ec60c9bc39ed820bd759e9a58d4d85.tar.gz drakx-60642ca2e3ec60c9bc39ed820bd759e9a58d4d85.tar.bz2 drakx-60642ca2e3ec60c9bc39ed820bd759e9a58d4d85.tar.xz drakx-60642ca2e3ec60c9bc39ed820bd759e9a58d4d85.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 5fbeace0f..9bbad4da8 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -304,7 +304,7 @@ sub partitionDisks { if (cat_("/proc/mounts") =~ m|/\w+/(\S+)\s+/tmp/hdimage\s+(\S+)|) { $stage1_hd = { dev => $1, fs => $2 }; install_any::getFile("XXX"); #- close still opened filehandle - fs::umount("/tmp/hdimage"); + eval { fs::umount("/tmp/hdimage") }; } $::o->{steps}{formatPartitions}{done} = 0; eval { fs::umount_all($o->{fstab}, $o->{prefix}) } if $o->{fstab} && !$::testing; @@ -326,7 +326,7 @@ sub partitionDisks { unless ($::testing) { $o->rebootNeeded foreach grep { $_->{rebootNeeded} } @{$o->{hds}}; } - fs::mount($stage1_hd->{dev}, "/tmp/hdimage", $stage1_hd->{fs}) if $stage1_hd; + eval { fs::mount($stage1_hd->{dev}, "/tmp/hdimage", $stage1_hd->{fs}) } if $stage1_hd; $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}, $o->{raid}) ]; fsedit::get_root($o->{fstab}) or die @@ -459,7 +459,7 @@ sub configureTimezone { add2hash($o->{timezone}, { timezone::read($f) }); } $o->{timezone}{timezone} ||= timezone::bestTimezone(lang::lang2text($o->{lang})); - $o->{timezone}{UTC} = !$::beginner && !grep { isFat($_) } @{$o->{fstab}} unless exists $o->{timezone}{UTC}; + $o->{timezone}{UTC} = !$::beginner && !grep { isFat($_) || isNT($_) } @{$o->{fstab}} unless exists $o->{timezone}{UTC}; $o->timeConfig($f, $clicked); } #------------------------------------------------------------------------------ @@ -632,11 +632,7 @@ sub main { if ($::auto_install) { require install_steps_auto_install; - if ($::auto_install eq 'floppy') { - eval { $o = $::o = install_any::loadO($o, "floppy") } if $@; - } else { - eval { $o = $::o = install_any::loadO($o, $::auto_install) }; - } + eval { $o = $::o = install_any::loadO($o, $::auto_install) }; if ($@) { log::l("error using auto_install, continuing"); undef $::auto_install; |