diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-08-02 05:41:06 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-08-02 05:41:06 +0000 |
commit | c958e3101438d857061c31798015793432291101 (patch) | |
tree | e879a87a6f2b55d84b41aea72b231752e9797e1e /perl-install/network | |
parent | 4bcaedfdf8e7e852a8b4a81849e985ef00f407ba (diff) | |
download | drakx-c958e3101438d857061c31798015793432291101.tar drakx-c958e3101438d857061c31798015793432291101.tar.gz drakx-c958e3101438d857061c31798015793432291101.tar.bz2 drakx-c958e3101438d857061c31798015793432291101.tar.xz drakx-c958e3101438d857061c31798015793432291101.zip |
ip isn't localized
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/ethernet.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index e20aa0ba4..b40ecfd0f 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -108,7 +108,7 @@ sub get_eth_cards_names { sub get_eth_card_mac_address { my ($intf) = @_; #- don't look for 6 bytes addresses only because of firewire - `LC_ALL= LANG= $::prefix/sbin/ip -o link show $intf 2>/dev/null` =~ m|.*link/(\S+)\s((?:[0-9a-f]{2}:?)+)\s|; + `$::prefix/sbin/ip -o link show $intf 2>/dev/null` =~ m|.*link/(\S+)\s((?:[0-9a-f]{2}:?)+)\s|; } #- write interfaces MAC address in iftab |