summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-08-14 14:36:57 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-08-14 14:36:57 +0000
commit6cd4d28674f9131bdf17166c1c0101b3a0045c2b (patch)
tree349dc7da9f93b76c9b94a4c85f643723c1be4ea6 /perl-install/install2.pm
parentc231a43106143e04ad0cb7f2542723cfec66777d (diff)
downloaddrakx-backup-do-not-use-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar
drakx-backup-do-not-use-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar.gz
drakx-backup-do-not-use-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar.bz2
drakx-backup-do-not-use-6cd4d28674f9131bdf17166c1c0101b3a0045c2b.tar.xz
drakx-backup-do-not-use-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.pm3
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;
}