summaryrefslogtreecommitdiffstats
path: root/textw/complete_text.py
diff options
context:
space:
mode:
authorlaroche <laroche>2001-07-20 08:08:06 +0000
committerlaroche <laroche>2001-07-20 08:08:06 +0000
commit28a046bd21960576b3c1628b75e6f19a4e039046 (patch)
treec28c206e6e6a726761093b4181302d59cb2a48e0 /textw/complete_text.py
parentb28e0fc487e766dd9e236f7660c02210c7d6c616 (diff)
downloadanaconda-28a046bd21960576b3c1628b75e6f19a4e039046.tar.gz
anaconda-28a046bd21960576b3c1628b75e6f19a4e039046.tar.xz
anaconda-28a046bd21960576b3c1628b75e6f19a4e039046.zip
add s390/s390x patchesr0-9-1
Diffstat (limited to 'textw/complete_text.py')
-rw-r--r--textw/complete_text.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py
index ae0efa5ad..eb76eca5f 100644
--- a/textw/complete_text.py
+++ b/textw/complete_text.py
@@ -14,8 +14,13 @@
from snack import *
from constants_text import *
from translate import _
+import iutil
+
class FinishedWindow:
+
+ if (iutil.getArch() != "s390" and iutil.getArch() != "s390x"):
+
def __call__ (self, screen):
screen.pushHelpLine (string.center(_("<Return> to reboot"),
screen.width))
@@ -37,6 +42,20 @@ class FinishedWindow:
return INSTALL_OK
+ else:
+
+ def __call__ (self, screen):
+ screen.pushHelpLine (string.center(_("<Return> to continue"),
+ screen.width))
+ rc = ButtonChoiceWindow (screen, _("Complete"),
+ _("Congratulations, package installation is complete.\n\n"
+ "Press return to continue.\n\n"
+ "Information on configuring and using your Red Hat "
+ "Linux system is contained in the Red Hat Linux "
+ "manuals."),
+ [ _("OK") ], help = "finished")
+ return INSTALL_OK
+
class ReconfigFinishedWindow:
def __call__ (self, screen):