summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-20 10:37:42 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-20 10:37:42 +0000
commit015e75aaf5a611b5c2b8bd80634f19fef92943b0 (patch)
tree2b3afe550e089384566402d68df8a6fedc2467b5 /perl-install
parentfd3245f9dd3884d4b14cf0c8e2cd4ee57152aae2 (diff)
downloaddrakx-015e75aaf5a611b5c2b8bd80634f19fef92943b0.tar
drakx-015e75aaf5a611b5c2b8bd80634f19fef92943b0.tar.gz
drakx-015e75aaf5a611b5c2b8bd80634f19fef92943b0.tar.bz2
drakx-015e75aaf5a611b5c2b8bd80634f19fef92943b0.tar.xz
drakx-015e75aaf5a611b5c2b8bd80634f19fef92943b0.zip
do not bother try installing packages in testing mode
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/network/modem.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/modem.pm b/perl-install/network/modem.pm
index 29f41fe40..1758c6f1c 100644
--- a/perl-install/network/modem.pm
+++ b/perl-install/network/modem.pm
@@ -14,7 +14,7 @@ sub ppp_configure {
my ($in, $modem) = @_;
$modem or return;
$in->do_pkgs->install('ppp') if !$::testing;
- $in->do_pkgs->install('kdenetwork-kppp') if $in->do_pkgs->is_installed('kdebase');
+ $in->do_pkgs->install('kdenetwork-kppp') if !$::testing &&$in->do_pkgs->is_installed('kdebase');
ppp_configure_raw($modem);
}