diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-15 17:26:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-15 17:26:09 +0000 |
commit | 13369fbae834e3e6d606b90562e8e6fa1a963b8b (patch) | |
tree | a9fcd58d2186878636b21618be8b658457d9c50f /perl-install/install_steps_auto_install.pm | |
parent | 872a725d052e5da274568e5a7bad861c2748586b (diff) | |
download | drakx-13369fbae834e3e6d606b90562e8e6fa1a963b8b.tar drakx-13369fbae834e3e6d606b90562e8e6fa1a963b8b.tar.gz drakx-13369fbae834e3e6d606b90562e8e6fa1a963b8b.tar.bz2 drakx-13369fbae834e3e6d606b90562e8e6fa1a963b8b.tar.xz drakx-13369fbae834e3e6d606b90562e8e6fa1a963b8b.zip |
move install_steps_auto_install_non_interactive::configureNetwork() to
install_steps_auto_install::configureNetwork() as it should be
(thanks to Luc Bourdot)
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r-- | perl-install/install_steps_auto_install.pm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm index bf44f8c06..7d89e6271 100644 --- a/perl-install/install_steps_auto_install.pm +++ b/perl-install/install_steps_auto_install.pm @@ -37,6 +37,11 @@ sub new { } } +sub configureNetwork { + my ($_o) = @_; + modules::load_category('network/main|usb'); + goto &install_steps::configureNetwork; +} sub exitInstall { my ($o, $alldone) = @_; @@ -65,12 +70,6 @@ use modules; use common; use log; -sub configureNetwork { - my ($_o) = @_; - modules::load_category('network/main|usb'); - goto &install_steps::configureNetwork; -} - sub enteringStep { my ($o, $step) = @_; my ($s, $t) = (N_("Entering step `%s'\n"), $o->{steps}{$step}{text}); |