summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-12-18 18:05:55 +0000
committerdamien <damien@mandriva.com>2000-12-18 18:05:55 +0000
commit161b98be4e589b5d3574ea17e923a2040d141a71 (patch)
tree5b799c1942b370b7c14ae4dec8640b33b73ab608 /perl-install/install_steps_interactive.pm
parentce769349f19b71801fc7cf0fc49fea08d4bf4164 (diff)
downloaddrakx-backup-do-not-use-161b98be4e589b5d3574ea17e923a2040d141a71.tar
drakx-backup-do-not-use-161b98be4e589b5d3574ea17e923a2040d141a71.tar.gz
drakx-backup-do-not-use-161b98be4e589b5d3574ea17e923a2040d141a71.tar.bz2
drakx-backup-do-not-use-161b98be4e589b5d3574ea17e923a2040d141a71.tar.xz
drakx-backup-do-not-use-161b98be4e589b5d3574ea17e923a2040d141a71.zip
changed firewall comportement
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm20
1 files changed, 18 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index e74789c8c..d7a5fb728 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1109,15 +1109,31 @@ Do you really want to quit now?"), 0);
$o->exit unless $alldone;
- $o->ask_warn('',
-_("Congratulations, installation is complete.
+ if ($::firewall) {
+ $o->ask_warn('',
+ _("Congratulations, installation is complete.
Remove the boot media and press return to reboot.
+For further configuration, connect on https://$o->{netc}{HOSTNAME}:8443/ with your admin account
+
+****************************************
+
For information on fixes which are available for this release of Linux-Mandrake,
consult the Errata available from http://www.linux-mandrake.com/.
Information on configuring your system is available in the post
install chapter of the Official Linux-Mandrake User's Guide.")) if $alldone && !$::g_auto_install;
+ } else {
+ $o->ask_warn('',
+ _("Congratulations, installation is complete.
+Remove the boot media and press return to reboot.
+
+For information on fixes which are available for this release of Linux-Mandrake,
+consult the Errata available from http://www.linux-mandrake.com/.
+
+Information on configuring your system is available in the post
+install chapter of the Official Linux-Mandrake User's Guide.")) if $alldone && !$::g_auto_install;
+ }
}