summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-09-01 04:29:05 +0000
committerdamien <damien@mandriva.com>2000-09-01 04:29:05 +0000
commit9e6f0a8dc550dcbb0025b6c78e9938dade9831af (patch)
tree2c493e8cafe1ec92892e819e0d6134fc0a272b15 /perl-install/install_steps_auto_install.pm
parente02218b14f952753aa6ddc3b6cfb9a067732919e (diff)
downloaddrakx-9e6f0a8dc550dcbb0025b6c78e9938dade9831af.tar
drakx-9e6f0a8dc550dcbb0025b6c78e9938dade9831af.tar.gz
drakx-9e6f0a8dc550dcbb0025b6c78e9938dade9831af.tar.bz2
drakx-9e6f0a8dc550dcbb0025b6c78e9938dade9831af.tar.xz
drakx-9e6f0a8dc550dcbb0025b6c78e9938dade9831af.zip
see changelog. Big changes.
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r--perl-install/install_steps_auto_install.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm
index e7025e64f..7b20db611 100644
--- a/perl-install/install_steps_auto_install.pm
+++ b/perl-install/install_steps_auto_install.pm
@@ -2,6 +2,7 @@ package install_steps_auto_install;
use diagnostics;
use strict;
+use netconnect;
use vars qw(@ISA);
@ISA = qw(install_steps);
@@ -34,7 +35,9 @@ sub new {
sub configureNetwork {
my ($o) = @_;
modules::load_thiskind('net', $o->{pcmcia});
- install_steps::configureNetwork($o);
+#- install_steps::configureNetwork($o);
+ $o->{netcnx}||={};
+ netconnect::net_connect($o->{prefix}, $o->{netcnx}, $o->{netc}, $o->{modem}, $o->{mouse}, $o, $o->{pcmcia}, $o->{intf}, 1);
}
sub enteringStep($$$) {