From bc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 16 Jan 2003 11:53:19 +0000 Subject: configureNetwork step must be non-auto otherwise only install_steps::configureNetwork is called --- perl-install/install_steps_auto_install.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm index 7d89e6271..92d3f1722 100644 --- a/perl-install/install_steps_auto_install.pm +++ b/perl-install/install_steps_auto_install.pm @@ -17,7 +17,7 @@ sub new { # Handle legacy options $o->{interactive} ||= 'gtk' if $graphical || !is_empty_array_ref($o->{interactiveSteps}); - push @{$o->{interactiveSteps}}, qw(installPackages exitInstall), @graphical_steps; + push @{$o->{interactiveSteps}}, qw(installPackages exitInstall configureNetwork), @graphical_steps; if ($o->{interactive}) { my $interactiveClass = "install_steps_$o->{interactive}"; @@ -39,6 +39,7 @@ sub new { sub configureNetwork { my ($_o) = @_; + log::l("install_steps_auto_install::configureNetwork"); modules::load_category('network/main|usb'); goto &install_steps::configureNetwork; } -- cgit v1.2.1