diff options
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r-- | perl-install/install_steps_auto_install.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm index 6f22b2522..f6043bf75 100644 --- a/perl-install/install_steps_auto_install.pm +++ b/perl-install/install_steps_auto_install.pm @@ -2,7 +2,6 @@ package install_steps_auto_install; use diagnostics; use strict; -use netconnect; use lang; use vars qw(@ISA); @@ -36,7 +35,7 @@ sub new { sub configureNetwork { my ($o) = @_; modules::load_thiskind('net'); - netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o->{netc}, $o->{mouse}, $o, $o->{pcmcia}, $o->{intf}, 1); + goto &install_steps::configureNetwork; } sub enteringStep($$$) { |