summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-05-30 21:53:11 +0000
committerJeremy Katz <katzj@redhat.com>2002-05-30 21:53:11 +0000
commit7f45c72f2793bcf73acc3040f91a534649db00fc (patch)
treede9d9d012686cda6a99572e6df1a237d954db3f4 /rescue.py
parent2b046b265a9883167c2de76f7a967008d2b46686 (diff)
downloadanaconda-7f45c72f2793bcf73acc3040f91a534649db00fc.tar.gz
anaconda-7f45c72f2793bcf73acc3040f91a534649db00fc.tar.xz
anaconda-7f45c72f2793bcf73acc3040f91a534649db00fc.zip
kill more /mnt/sysimage
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/rescue.py b/rescue.py
index 06464ca9a..26940e30f 100644
--- a/rescue.py
+++ b/rescue.py
@@ -167,11 +167,12 @@ def runRescue(instPath, mountroot, id):
rootmounted = 0
else:
ButtonChoiceWindow(screen, _("Rescue"),
- _("Your system has been mounted under /mnt/sysimage.\n\n"
+ _("Your system has been mounted under %s.\n\n"
"Press <return> to get a shell. If you would like to "
"make your system the root environment, run the command:\n\n"
- "\tchroot /mnt/sysimage\n\nThe system will reboot "
- "automatically when you exit from the shell."),
+ "\tchroot %s\n\nThe system will reboot "
+ "automatically when you exit from the shell.") %
+ (instPath,instPath),
[_("OK")] )
rootmounted = 1
except: