diff options
author | Mike Fulbright <msf@redhat.com> | 2001-07-06 23:37:22 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-07-06 23:37:22 +0000 |
commit | eee60d6d6dc557013609b18e2c729b01a3d2c351 (patch) | |
tree | fc70b4f78bb08638e5298d063d9806e7cc3d7e13 /dispatch.py | |
parent | e27dbbeeb2a260822a9faa6145045d9fb9a126e0 (diff) | |
download | anaconda-eee60d6d6dc557013609b18e2c729b01a3d2c351.tar.gz anaconda-eee60d6d6dc557013609b18e2c729b01a3d2c351.tar.xz anaconda-eee60d6d6dc557013609b18e2c729b01a3d2c351.zip |
Added upgrade migrate screen. Finds ext2 partitions and offers user choice of moving to ext3
Diffstat (limited to 'dispatch.py')
-rw-r--r-- | dispatch.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py index 12978e31b..1681d6b02 100644 --- a/dispatch.py +++ b/dispatch.py @@ -27,7 +27,7 @@ from bootloader import partitioningComplete, writeBootloader from bootloader import bootloaderSetupChoices from flags import flags from upgrade import upgradeFindPackages, upgradeMountFilesystems -from upgrade import upgradeSwapSuggestion +from upgrade import upgradeSwapSuggestion, upgradeMigrateFind # These are all of the install steps, in order. Note that upgrade and # install steps are the same thing! Upgrades skip install steps, while @@ -66,6 +66,8 @@ installSteps = [ ( "partitiondone", partitioningComplete, ("dispatch", "id.bootloader", "id.fsset", "id.diskset", "id.partitions") ), + ( "upgrademigfind", upgradeMigrateFind, ("dispatch", "id.partitions")), + ( "upgrademigratefs", ("id.partitions",) ), ( "bootloadersetup", bootloaderSetupChoices, ("dispatch", "id.bootloader", "id.fsset", "id.diskset") ), ( "bootloader", ("dispatch", "id.bootloader", "id.fsset", "id.diskset") ), |