summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-06-28 16:15:06 +0000
committerErik Troan <ewt@redhat.com>2001-06-28 16:15:06 +0000
commit332390ec8005248f05b391ae927ad2c8f51a94b3 (patch)
treebae8cc3711c8f571e235d5fb3cd798c1725dba7f /anaconda
parent9d9c94595757c088f14e574723d4a6b32665c8df (diff)
downloadanaconda-332390ec8005248f05b391ae927ad2c8f51a94b3.tar.gz
anaconda-332390ec8005248f05b391ae927ad2c8f51a94b3.tar.xz
anaconda-332390ec8005248f05b391ae927ad2c8f51a94b3.zip
rescue mode works again
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda6
1 files changed, 4 insertions, 2 deletions
diff --git a/anaconda b/anaconda
index 8874b9fbe..3c7db20ef 100755
--- a/anaconda
+++ b/anaconda
@@ -213,10 +213,12 @@ if (progmode == 'rescue'):
sys.stderr.write('--method required for rescue mode\n')
sys.exit(1)
- import rescue
+ import rescue, instdata
log.open (logFile)
- rescue.runRescue(method, flags.serial, not rescue_nomount)
+ id = instdata.InstallData([], "fd0")
+ rescue.runRescue("/mnt/sysimage", not rescue_nomount, id)
+
# shouldn't get back here
sys.exit(1)
elif (progmode == 'reconfig'):