summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-01-16 11:53:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-01-16 11:53:19 +0000
commitbc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d (patch)
tree6187aa89a456e96276c6bcd88199070b2811a366 /perl-install/install_steps_auto_install.pm
parent6e3386e4dc35e8dff6eeab70a58731ce54ec345c (diff)
downloaddrakx-bc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d.tar
drakx-bc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d.tar.gz
drakx-bc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d.tar.bz2
drakx-bc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d.tar.xz
drakx-bc44fb7c8cfa1c3a237fcfa8ea62d7dd2b34f66d.zip
configureNetwork step must be non-auto otherwise only
install_steps::configureNetwork is called
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r--perl-install/install_steps_auto_install.pm3
1 files changed, 2 insertions, 1 deletions
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;
}