summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r--perl-install/install_steps_auto_install.pm11
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});