diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-08-14 14:36:57 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-08-14 14:36:57 +0000 |
commit | 6cd4d28674f9131bdf17166c1c0101b3a0045c2b (patch) | |
tree | 349dc7da9f93b76c9b94a4c85f643723c1be4ea6 /perl-install/install2.pm | |
parent | c231a43106143e04ad0cb7f2542723cfec66777d (diff) | |
download | drakx-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar drakx-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar.gz drakx-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar.bz2 drakx-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar.xz drakx-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.zip |
- fix behaviour of draknet when auto-install
- remove auto flag when error-in-step
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 5b7bd7805..ce08f0f70 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -256,7 +256,7 @@ sub configureNetwork { #- get current configuration of network device. require network; eval { network::read_all_conf($o->{prefix}, $o->{netc} ||= {}, $o->{intf} ||= {}) }; - installStepsCall($o, $auto, 'configureNetwork', $ent_number == 1); + installStepsCall($o, $auto, 'configureNetwork', $ent_number == 1, $clicked); } #------------------------------------------------------------------------------ sub installCrypto { @@ -564,6 +564,7 @@ sub main { /^theme_changed$/ and redo MAIN; unless (/^already displayed/) { eval { $o->errorInStep($_) }; + $o->{steps}{$o->{step}}{auto} = 0; $err = $@; $err and next; } |