summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-02-12 15:50:19 -0500
committerJeremy Katz <katzj@redhat.com>2008-02-12 15:50:19 -0500
commite88dffe61aa8ac671160bc6e0c7d861d222f1cde (patch)
tree1fde3565da35808307fcbacd2a05245e624c2fc3 /dispatch.py
parent62ac419cecb7873bb3678ca8d5370791cadd9b7e (diff)
downloadanaconda-e88dffe61aa8ac671160bc6e0c7d861d222f1cde.tar.gz
anaconda-e88dffe61aa8ac671160bc6e0c7d861d222f1cde.tar.xz
anaconda-e88dffe61aa8ac671160bc6e0c7d861d222f1cde.zip
Move migration to before mounting filesystems
By migrating before we enable filesystems, we can actually mount as the migration target. This helps a lot for ext4
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dispatch.py b/dispatch.py
index 84d1eee0e..31b72d256 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -88,11 +88,11 @@ installSteps = [
("upgradecontinue", queryUpgradeContinue, ),
("upgradeswapsuggestion", upgradeSwapSuggestion, ),
("addswap", ),
- ("partitiondone", partitioningComplete, ),
- ("enablefilesystems", turnOnFilesystems, ),
("upgrademigfind", upgradeMigrateFind, ),
("upgrademigratefs", ),
+ ("partitiondone", partitioningComplete, ),
("migratefilesystems", doMigrateFilesystems, ),
+ ("enablefilesystems", turnOnFilesystems, ),
("upgbootloader", ),
("bootloadersetup", bootloaderSetupChoices, ),
("bootloader", ),