summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-02-26 19:02:46 +0000
committerJeremy Katz <katzj@redhat.com>2007-02-26 19:02:46 +0000
commit0b1256fca7c2faf60cf4e0ff59ca34c47379e772 (patch)
tree2d74ceb39fbf0597a673ce93ae29e56e23d1fc5c /packages.py
parentcb98c61a951161671b56162d88470a15bd1a26c5 (diff)
downloadanaconda-0b1256fca7c2faf60cf4e0ff59ca34c47379e772.tar.gz
anaconda-0b1256fca7c2faf60cf4e0ff59ca34c47379e772.tar.xz
anaconda-0b1256fca7c2faf60cf4e0ff59ca34c47379e772.zip
2007-02-26 Jeremy Katz <katzj@redhat.com>
* packages.py (doMigrateFilesystems): Write out the fstab after migrate (#223215)
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index 623834c1e..2fac3be42 100644
--- a/packages.py
+++ b/packages.py
@@ -125,9 +125,11 @@ def doMigrateFilesystems(anaconda):
anaconda.id.fsset.migrateFilesystems (anaconda.rootPath)
- # if we're upgrading, we may need to do lvm device node hackery
if anaconda.id.upgrade:
+ # if we're upgrading, we may need to do lvm device node hackery
anaconda.id.fsset.makeLVMNodes(anaconda.rootPath, trylvm1 = 1)
+ # and we should write out a new fstab with the migrated fstype
+ anaconda.id.fsset.write(anaconda.rootPath)
def turnOnFilesystems(anaconda):