diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:35:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:35:37 +0000 |
commit | 144146a4fdfea33d8d6b6d704235260cdb1cadc6 (patch) | |
tree | 3d1f363713ffc4e290fc247aaf4fcf2be4dd6735 /perl-install/network/netconnect.pm | |
parent | 80b5e4e009276349e59ed2b9eefb5e42da3d073f (diff) | |
download | drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar.gz drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar.bz2 drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar.xz drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.zip |
adapt to new category network/gigabit (which used to be in network/main)
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index ff9c73c71..a2bc40aba 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -59,7 +59,7 @@ sub detect { $auto_detect->{isdn}{$_} = $isdn->{$_} foreach qw(description vendor id driver card_type type); $auto_detect->{isdn}{description} =~ s/.*\|//; - modules::load_category('network/main|usb'); + modules::load_category('network/main|gigabit|usb'); require network::ethernet; network::ethernet->import; my @all_cards = conf_network_card_backend(undef, undef, undef, undef, undef, undef); @@ -325,7 +325,7 @@ sub save_conf { $netcnx->{type} =~ /adsl/ and $adsl = $netcnx->{$netcnx->{type}}; $netcnx->{type} eq 'isdn_external' || $netcnx->{type} eq 'modem' and $modem = $netcnx->{$netcnx->{type}}; $netcnx->{type} eq 'isdn_internal' and $isdn = $netcnx->{$netcnx->{type}}; - modules::load_category('network/main|usb'); + modules::load_category('network/main|gigabit|usb'); require network::ethernet; network::ethernet->import; my @_all_cards = conf_network_card_backend($netc, $intf, undef, undef, undef, undef); |