diff options
author | Francois Pons <fpons@mandriva.com> | 2000-09-14 09:41:21 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-09-14 09:41:21 +0000 |
commit | 546f809d73cd908c7da65599467217fc76a8ca2d (patch) | |
tree | 4fa4ca0bf48f1f79f015250807c3303e33004426 /perl-install/any.pm | |
parent | b36ba0f5125d7611cf2979bcb965f1c430809d13 (diff) | |
download | drakx-546f809d73cd908c7da65599467217fc76a8ca2d.tar drakx-546f809d73cd908c7da65599467217fc76a8ca2d.tar.gz drakx-546f809d73cd908c7da65599467217fc76a8ca2d.tar.bz2 drakx-546f809d73cd908c7da65599467217fc76a8ca2d.tar.xz drakx-546f809d73cd908c7da65599467217fc76a8ca2d.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index a2237f85d..7989097f3 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -309,15 +309,15 @@ sub inspect { #-----modem conf sub pppConfig { - my ($in, $modem, $prefix) = @_; + my ($in, $modem, $prefix, $install) = @_; $modem or return; symlinkf($modem->{device}, "$prefix/dev/modem") or log::l("creation of $prefix/dev/modem failed"); - $::isStandalone ? `urpmi --auto ppp` : $in->pkg_install("ppp") unless $::testing; + $install->(qw(ppp)) unless $::testing; my %toreplace; $toreplace{$_} = $modem->{$_} foreach qw(connection phone login passwd auth domain dns1 dns2); - $toreplace{kpppauth} = ${{ 'Script-based' => 0, 'PAP' => 1, 'Terminal-based' => 2, 'CHAP' => 3, }}{$modem->{auth}}; + $toreplace{kpppauth} = ${{ 'Script-based' => 0, 'PAP' => 1, 'Terminal-based' => 2, }}{$modem->{auth}}; $toreplace{phone} =~ s/\D//g; $toreplace{dnsserver} = join ',', map { $modem->{$_} } "dns1", "dns2"; $toreplace{dnsserver} .= $toreplace{dnsserver} && ','; @@ -379,7 +379,14 @@ END 'ABORT' 'Login incorrect' '' 'ATZ' 'OK' -'ATDT$modem->{special_command}' +END + if ($modem->{special_command}) { + print CHAT <<END; +'$modem->{special_command}' +'OK' +END + } + print CHAT <<END 'ATDT$toreplace{phone}' 'CONNECT' '' END @@ -413,7 +420,7 @@ END } #- restore access right to secrets file, just in case. chmod 0600, $secrets; - } #- CHAP is not supported by initscripts, need patching before doing more on that here! + } #-install_any::template2userfile($o->{prefix}, "$ENV{SHARE_PATH}/kppprc.in", ".kde/share/config/kppprc", 1, %toreplace); commands::mkdir_("-p", "$prefix/usr/share/config"); |