diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-08-25 09:47:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-08-25 09:47:06 +0000 |
commit | 9b8dddbc720899a7872d82e39405997ab6949df4 (patch) | |
tree | e294bf4db32549a4592ce398b694d4a9cd389006 /perl-install/detect_devices.pm | |
parent | 9062c92ba51a7170424f825c60e5ff5ec46c85dd (diff) | |
download | drakx-9b8dddbc720899a7872d82e39405997ab6949df4.tar drakx-9b8dddbc720899a7872d82e39405997ab6949df4.tar.gz drakx-9b8dddbc720899a7872d82e39405997ab6949df4.tar.bz2 drakx-9b8dddbc720899a7872d82e39405997ab6949df4.tar.xz drakx-9b8dddbc720899a7872d82e39405997ab6949df4.zip |
no_comment
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index d226d033b..327f12754 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -128,12 +128,8 @@ sub getDAC960() { } -sub getNet() { - # I should probably ask which device to use if multiple ones are available -- oh well :-( - foreach (qw(eth0 tr0 plip0 plip1 plip2 fddi0)) { - hasNetDevice($_) and log::l("$_ is available -- using it for networking"), return $_; - } - undef; +sub getNet() { + grep { hasNetDevice($_) } qw(eth0 tr0 plip0 plip1 plip2 fddi0); } sub getPlip() { foreach (0..2) { |