From 90b3afaf4be5e37c84b74678178eaecabbd069c8 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Fri, 21 Sep 2001 17:27:29 +0000 Subject: avoid detecting plip for live upgrade. --- perl-install/detect_devices.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 8438897b8..5e0fd1441 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -206,7 +206,7 @@ sub getNet() { # } # /ippp/ and run_program::rooted("", "/sbin/isdnctrl delif $_") foreach @netdevices; # @a; - grep { !($::isStandalone && /plip/) && c::hasNetDevice($_) } @netdevices; + grep { !(($::isStandalone || $::live) && /plip/) && c::hasNetDevice($_) } @netdevices; } #sub getISDN() { -- cgit v1.2.1