summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--packages.py4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7edb4d3e7..15324ea07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2007-02-26 Jeremy Katz <katzj@redhat.com>
+ * packages.py (doMigrateFilesystems): Write out the fstab after
+ migrate (#223215)
+
* iw/autopart_type.py (PartitionTypeWindow.getScreen): Wrap before
the requested width (#221791)
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):