diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-02-13 14:45:02 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-02-13 14:45:02 +0000 |
commit | e420ff343b130dc81725f64e42fcfb1634fdc496 (patch) | |
tree | bcd4c73ce55dda7bd6e2260d8e3d6ccb813eadf5 | |
parent | c6cce9af9a364b2860996709113b59496aedaa03 (diff) | |
download | mgaonline-e420ff343b130dc81725f64e42fcfb1634fdc496.tar mgaonline-e420ff343b130dc81725f64e42fcfb1634fdc496.tar.gz mgaonline-e420ff343b130dc81725f64e42fcfb1634fdc496.tar.bz2 mgaonline-e420ff343b130dc81725f64e42fcfb1634fdc496.tar.xz mgaonline-e420ff343b130dc81725f64e42fcfb1634fdc496.zip |
give send_conf_via_soap() the updated country if needed
-rwxr-xr-x | mdkonline | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -140,7 +140,7 @@ my $wiz = data => sub { [ { label => N("Email address:"), val => \$login }, - { label => N("Country"), val => \$country, type => "combo", list => [ sort keys %countries ], not_edit => 0 } + { label => N("Country"), val => \$country, type => "combo", list => [ sort keys %countries ], not_edit => 0 }, { label => N("Password:"), val => \$password, hidden => 1 }, { label => N("Machine name:"), val => \$boxname }, { label => N("Machine description:"), val => \$descboxname }, @@ -167,14 +167,14 @@ my $wiz = formatAlaTeX(N("In order to benefit from Mandriva Online services,\nwe are about to upload your configuration.\n\nThe Wizard will now send the following information to Mandriva:\n\n1) the list of packages you have installed on your system,\n\n2) your hardware configuration.\n\nIf you feel uncomfortable by that idea, or do not want to benefit from this service,\nplease press 'Cancel'. By pressing 'Next', you allow us to keep you informed\nabout security updates and useful upgrades via personalized email alerts.\nFurthermore, you benefit from discounted paid support services on\nwww.mandrivaexpert.com.")), data => [ { } ], complete => sub { - my $err = send_conf_via_soap($login, $password, $boxname, $descboxname, $locale->{country}); + my $err = send_conf_via_soap($login, $password, $boxname, $descboxname, $countries{$country}); # if authentication failed with "No host for this id", just transparently register the host again: # (eg: when host was deleted through the web interface) if ($err ne 'OK') { if ($err =~ /No host for this id/) { log::explanations("registring again the host because the id is lost (deleted through the web interface?"); substInFile { undef $_ if /HOST_ID|HOST_NAME/ } '/etc/sysconfig/mdkonline'; - $err = send_conf_via_soap($login, $password, $boxname, $descboxname, $locale->{country}); + $err = send_conf_via_soap($login, $password, $boxname, $descboxname, $countries{$country}); } return $err eq 'OK'; $in->ask_warn(N("Error"), N("Connection problem") . "\n\n" . N("Problem occurs when uploading files, please try again") . "\n\n" . $err); |