diff options
author | Chris Lumens <clumens@redhat.com> | 2008-09-15 10:02:12 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-09-15 10:02:12 -0400 |
commit | 7c322a9ca3d2adbd4a11f1b7d8e4818d40e223f7 (patch) | |
tree | 6e02acc08bcfd09b505ca7f98fd973de084ba62e /rescue.py | |
parent | bc551e694adb2816711025480684eb0000b8d878 (diff) | |
download | anaconda-7c322a9ca3d2adbd4a11f1b7d8e4818d40e223f7.tar.gz anaconda-7c322a9ca3d2adbd4a11f1b7d8e4818d40e223f7.tar.xz anaconda-7c322a9ca3d2adbd4a11f1b7d8e4818d40e223f7.zip |
Fix a traceback when starting a shell in rescue mode (#462148).
Diffstat (limited to 'rescue.py')
-rw-r--r-- | rescue.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -195,10 +195,10 @@ def runShell(screen = None, msg=""): "system will reboot.")) print - if os.path.exists("/bin/sh"): + if os.path.exists("/bin/bash"): iutil.execConsole() else: - print(_"Unable to find /bin/sh to execute! Not starting shell")) + print(_("Unable to find /bin/sh to execute! Not starting shell")) time.sleep(5) if screen: |