summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2002-01-17 09:41:27 +0000
committerdamien <damien@mandriva.com>2002-01-17 09:41:27 +0000
commit2d03c9d1c7e5eb6b5bb0fd360ff5c809ec259c66 (patch)
tree140d46e0a415c8ca0f9aef72b7a72bdbd54f3920 /perl-install/network/netconnect.pm
parent179f0238a5f3fa84aa9fe2829c7e5f1300647e35 (diff)
downloaddrakx-backup-do-not-use-2d03c9d1c7e5eb6b5bb0fd360ff5c809ec259c66.tar
drakx-backup-do-not-use-2d03c9d1c7e5eb6b5bb0fd360ff5c809ec259c66.tar.gz
drakx-backup-do-not-use-2d03c9d1c7e5eb6b5bb0fd360ff5c809ec259c66.tar.bz2
drakx-backup-do-not-use-2d03c9d1c7e5eb6b5bb0fd360ff5c809ec259c66.tar.xz
drakx-backup-do-not-use-2d03c9d1c7e5eb6b5bb0fd360ff5c809ec259c66.zip
draknet : success message only if success
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r--perl-install/network/netconnect.pm19
1 files changed, 11 insertions, 8 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 3e0029cf5..c5ecbbbdf 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -235,11 +235,7 @@ ifdown eth0
undef $netc->{NET_DEVICE};
}
- write_initscript();
- $::isStandalone && member($netc->{internet_cnx_choice}, ('modem', 'adsl', 'isdn')) and ask_connect_now();
-
- step_3:
-
+ my $success = 1;
network::configureNetwork2($in, $prefix, $netc, $intf);
my $network_configured = 1;
@@ -247,15 +243,22 @@ ifdown eth0
_("The network needs to be restarted"), 1))) {
#- run_program::rooted($prefix, "/etc/rc.d/init.d/network stop");
if (!run_program::rooted($prefix, "/etc/rc.d/init.d/network restart")) {
- $in->ask_okcancel(_("Network Configuration"), _("A problem occured while restarting the network: \n\n%s", `/etc/rc.d/init.d/network restart`), 0) or return;
+ $success = 0;
+ $in->ask_okcancel(_("Network Configuration"), _("A problem occured while restarting the network: \n\n%s", `/etc/rc.d/init.d/network restart`), 0);
}
}
- my $m = _("Congratulations, the network and internet configuration is finished.
+ write_initscript();
+ $::isStandalone && member($netc->{internet_cnx_choice}, ('modem', 'adsl', 'isdn')) and $success = ask_connect_now();
+
+ step_3:
+
+ my $m = $success ? _("Congratulations, the network and internet configuration is finished.
The configuration will now be applied to your system.\n") . if_($::isStandalone && $in->isa('interactive_gtk'),
_("After that is done, we recommend you to restart your X
-environnement to avoid hostname changing problem."));
+environnement to avoid hostname changing problem.")) : _("Problems occur during configuration.
+Test your connection via net_monitor or mcc. If your connection doesn't work, you might want to relaunch the configuration");
if ($::isWizard) {
$::Wizard_no_previous=1;
$::Wizard_finished=1;