diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-06-25 15:44:25 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-06-25 15:44:25 +0000 |
commit | 4281a82511804102f52cd5eba6ece532b2e3af08 (patch) | |
tree | fc006908913d663b63474b48b141b1ea07869134 /lib/network/modem.pm | |
parent | 496eb9208a636823b48ff73c4de7f15bfec637a7 (diff) | |
download | drakx-net-4281a82511804102f52cd5eba6ece532b2e3af08.tar drakx-net-4281a82511804102f52cd5eba6ece532b2e3af08.tar.gz drakx-net-4281a82511804102f52cd5eba6ece532b2e3af08.tar.bz2 drakx-net-4281a82511804102f52cd5eba6ece532b2e3af08.tar.xz drakx-net-4281a82511804102f52cd5eba6ece532b2e3af08.zip |
install kppp if kdebase4-runtime is installed (instead of checking kdebase, thanks neoclust)
Diffstat (limited to 'lib/network/modem.pm')
-rw-r--r-- | lib/network/modem.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/modem.pm b/lib/network/modem.pm index 2e0f08a..6c8fba0 100644 --- a/lib/network/modem.pm +++ b/lib/network/modem.pm @@ -50,7 +50,7 @@ sub ppp_read_conf() { sub ppp_configure { my ($net, $in, $modem) = @_; $in->do_pkgs->install('ppp') if !$::testing; - $in->do_pkgs->install('kppp') if !$::testing && $in->do_pkgs->is_installed('kdebase'); + $in->do_pkgs->install('kppp') if !$::testing && $in->do_pkgs->is_installed('kdebase4-runtime'); if ($modem->{device} ne "/dev/modem") { my $dev = $modem->{device}; |