diff options
author | Yves Duret <yduret@mandriva.com> | 2001-08-06 13:11:35 +0000 |
---|---|---|
committer | Yves Duret <yduret@mandriva.com> | 2001-08-06 13:11:35 +0000 |
commit | 498630bcb0ca476f810b696e27a5c20315f4fafd (patch) | |
tree | ffc47cd7ba7e2cf721a2c8d9a43fa62a3c78d973 /perl-install/standalone/drakgw | |
parent | 6f325271aae4dabd3515788b58eef4795109dc97 (diff) | |
download | drakx-498630bcb0ca476f810b696e27a5c20315f4fafd.tar drakx-498630bcb0ca476f810b696e27a5c20315f4fafd.tar.gz drakx-498630bcb0ca476f810b696e27a5c20315f4fafd.tar.bz2 drakx-498630bcb0ca476f810b696e27a5c20315f4fafd.tar.xz drakx-498630bcb0ca476f810b696e27a5c20315f4fafd.zip |
use MDK::Common;
use network::netconnect; and update functions call from netconnect
Diffstat (limited to 'perl-install/standalone/drakgw')
-rwxr-xr-x | perl-install/standalone/drakgw | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 7e09755b6..d4b7136b9 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -15,14 +15,15 @@ use lib qw(/usr/lib/libDrakX); -use common; use interactive; use standalone; use log; use c; -use netconnect; +use network::netconnect; use detect_devices; +use MDK::Common; + $::isInstall and die "Not supported during install.\n"; @@ -193,7 +194,7 @@ my @configured_devices = map { /ifcfg-(\S+)/ } `ls /etc/sysconfig/network-script my %aliased_devices; /^\s*alias\s+(eth[0-9])\s+(\S+)/ and $aliased_devices{$1} = $2 foreach cat_("/etc/modules.conf"); -my $card_netconnect = netconnect::get_net_device(); +my $card_netconnect = network::netconnect::get_net_device(); defined $card_netconnect and log::l("[drakgw] Information from netconnect: ignore card $card_netconnect"); my @cards = grep { @@ -656,6 +657,10 @@ Click on Configure to launch the setup wizard.", $setup_state)); #------------------------------------------------- #- $Log$ +#- Revision 1.46 2001/08/06 13:11:35 yduret +#- use MDK::Common; +#- use network::netconnect; and update functions call from netconnect +#- #- Revision 1.45 2001/07/24 22:39:28 prigaux #- move to MDK::Common, bool->to_bool #- |