diff options
author | Francois Pons <fpons@mandriva.com> | 2001-09-21 17:27:29 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-09-21 17:27:29 +0000 |
commit | 90b3afaf4be5e37c84b74678178eaecabbd069c8 (patch) | |
tree | c1336f3424e7b549bca89e133a3ca9084355634b /perl-install/detect_devices.pm | |
parent | 51986d94a7f8e51912b4cc2c6e742ed489bceb7e (diff) | |
download | drakx-90b3afaf4be5e37c84b74678178eaecabbd069c8.tar drakx-90b3afaf4be5e37c84b74678178eaecabbd069c8.tar.gz drakx-90b3afaf4be5e37c84b74678178eaecabbd069c8.tar.bz2 drakx-90b3afaf4be5e37c84b74678178eaecabbd069c8.tar.xz drakx-90b3afaf4be5e37c84b74678178eaecabbd069c8.zip |
avoid detecting plip for live upgrade.
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |