diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-10-04 11:24:58 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-10-04 11:24:58 +0000 |
commit | a19890db131db8f578e9d637b205344e6928539e (patch) | |
tree | 74ab048297d9b90c958774239020877a4039da61 /perl-install/standalone/drakconnect | |
parent | eb84f5eb878159ba25bdfb70998a663e24216736 (diff) | |
download | drakx-a19890db131db8f578e9d637b205344e6928539e.tar drakx-a19890db131db8f578e9d637b205344e6928539e.tar.gz drakx-a19890db131db8f578e9d637b205344e6928539e.tar.bz2 drakx-a19890db131db8f578e9d637b205344e6928539e.tar.xz drakx-a19890db131db8f578e9d637b205344e6928539e.zip |
(manage) use both type and device name in non-ethernet interfaces list
Diffstat (limited to 'perl-install/standalone/drakconnect')
-rwxr-xr-x | perl-install/standalone/drakconnect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index 19055cd58..a4cd99754 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -213,7 +213,7 @@ sub manage { while (my ($device, $interface) = each %$intf) { exists $name{$device} and next; my $type = network::tools::get_interface_type($interface); - $p->{$type || $device} = { + $p->{"$type ($device)"} = { name => $device, intf => $interface }; |