summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-03-16 05:44:39 +0000
committerMatt Wilson <msw@redhat.com>2001-03-16 05:44:39 +0000
commit04ea8b51cd366e59d21f5507acf2ae3ee5f95707 (patch)
treec4e89d8aae566777d5a7d8e5dbb34214cac71dd8 /upgrade.py
parent5b922589a6c8b29efdec0b34c095b908661f946d (diff)
downloadanaconda-04ea8b51cd366e59d21f5507acf2ae3ee5f95707.tar.gz
anaconda-04ea8b51cd366e59d21f5507acf2ae3ee5f95707.tar.xz
anaconda-04ea8b51cd366e59d21f5507acf2ae3ee5f95707.zip
todo.py:
1) verifyDeps -- specify how we're adding packages to the transaction set so that if new packages being installed obsolete something on the system, and something on the system has a dependency on that package being installed, that the dependency problem will appear. (#28069) 2) upgradeMountFilesystems -- read in the fstab so testing upgrades work upgrade.py: mountRootPartition -- use instPath - hardcoding /mnt/sysimage is bad bad.
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 de83f4efc..142ddf6c7 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -85,7 +85,7 @@ def mountRootPartition(intf, rootInfo, theFstab, instPath, allowDirty = 0,
else:
isys.mount(root, '/mnt/sysimage')
- fstab.readFstab('/mnt/sysimage/etc/fstab', theFstab)
+ fstab.readFstab(instPath + '/etc/fstab', theFstab)
if rootFs == "vfat":
fstab.unmountLoopbackRoot()