summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-01-23 21:01:32 +0000
committerMike Fulbright <msf@redhat.com>2001-01-23 21:01:32 +0000
commite08ff592837bfbea5f94a29a0f0038f438267708 (patch)
tree68d0542cb8505f443e0ea437f78eded48a44a0dc /upgrade.py
parent1aae45d8ce07c079881c8815b657762ee216dbd8 (diff)
downloadanaconda-e08ff592837bfbea5f94a29a0f0038f438267708.tar.gz
anaconda-e08ff592837bfbea5f94a29a0f0038f438267708.tar.xz
anaconda-e08ff592837bfbea5f94a29a0f0038f438267708.zip
fixed so we just ignore RAID booting when doing maximum cylinder test, also fixed some problems in rescue mode
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py
index c0c5f1715..1f17c300f 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -15,7 +15,7 @@ def findExistingRoots (intf, theFstab):
mdList = raid.startAllRaid(drives)
for dev in mdList:
- if theFstab.isValidExt2 (dev):
+ if fstab.isValidExt2 (dev):
try:
isys.mount(dev, '/mnt/sysimage', readOnly = 1)
except SystemError, (errno, msg):