diff options
author | damien <damien@mandriva.com> | 2001-10-22 17:17:57 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-10-22 17:17:57 +0000 |
commit | 4fd1a2e4b25b726090f5fffa0010517c1aa058bc (patch) | |
tree | 84b629bd99dc31bfba30620e9cbef86f00c154d4 /perl-install/network/tools.pm | |
parent | de77fcd892e37948abb021d96f3897371b0f9011 (diff) | |
download | drakx-4fd1a2e4b25b726090f5fffa0010517c1aa058bc.tar drakx-4fd1a2e4b25b726090f5fffa0010517c1aa058bc.tar.gz drakx-4fd1a2e4b25b726090f5fffa0010517c1aa058bc.tar.bz2 drakx-4fd1a2e4b25b726090f5fffa0010517c1aa058bc.tar.xz drakx-4fd1a2e4b25b726090f5fffa0010517c1aa058bc.zip |
speedtouch config : added usa vpi vci
Diffstat (limited to 'perl-install/network/tools.pm')
-rw-r--r-- | perl-install/network/tools.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 51e4f2086..33c4f300c 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -86,7 +86,7 @@ sub ask_info2 { if__($cnx->{phone_out}, { label => _("Provider phone number"), val => \$cnx->{phone_out} }), if__($netc->{dnsServer2}, { label => _("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }), if__($netc->{dnsServer3}, { label => _("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }), - if__($cnx->{vpivci}, { label => _("Choose your country"), val => \$netc->{vpivci}, list => ['Netherlands', 'France', 'Belgium', 'Italy', 'UK'] }), + if__($cnx->{vpivci}, { label => _("Choose your country"), val => \$netc->{vpivci}, list => ['Netherlands', 'France', 'Belgium', 'Italy', 'UK', 'USA'] }), if__($cnx->{dialing_mode}, { label => _("Dialing mode"), val => \$cnx->{dialing_mode},list=>["auto","manual"]}), if__($cnx->{speed}, { label => _("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"]}), if__($cnx->{huptimeout}, { label => _("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }), @@ -95,7 +95,7 @@ sub ask_info2 { ] ) or return; if ($netc->{vpivci}) { - foreach (['Netherlands', '8_48'], ['France', '8_35'], ['Belgium', '8_35'], ['Italy', '8_35'], ['UK', '0_38']) { + foreach (['Netherlands', '8_48'], ['France', '8_35'], ['Belgium', '8_35'], ['Italy', '8_35'], ['UK', '0_38'], ['USA', '8_35']) { $netc->{vpivci} eq $_->[0] and $netc->{vpivci} = $_->[1]; } } |