diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-20 01:45:42 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-20 01:45:42 +0000 |
commit | 774b4fcd6f659c1caf8428021c85f67c37b86611 (patch) | |
tree | 25c6e238234f0d1d301e974f6305ba2a3b57db41 /dispatch.py | |
parent | ab3865fba0e6ddce1332cc4a76323198b1521a5a (diff) | |
download | anaconda-774b4fcd6f659c1caf8428021c85f67c37b86611.tar.gz anaconda-774b4fcd6f659c1caf8428021c85f67c37b86611.tar.xz anaconda-774b4fcd6f659c1caf8428021c85f67c37b86611.zip |
turn on swap early in lowmem (#46304), prevent you from editing once things are turned on (#46321)
Diffstat (limited to 'dispatch.py')
-rw-r--r-- | dispatch.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dispatch.py b/dispatch.py index 8c1ad0620..a484b6371 100644 --- a/dispatch.py +++ b/dispatch.py @@ -68,9 +68,9 @@ installSteps = [ ("upgradeswapsuggestion", upgradeSwapSuggestion, ("dispatch", "id", "instPath")), ("addswap", ("intf", "id.fsset", "instPath", "id.upgradeSwapInfo")), - ("partitiondone", partitioningComplete, ("dispatch", "id.bootloader", - "id.fsset", "id.diskset", - "id.partitions")), + ("partitiondone", partitioningComplete, ("id.bootloader", "id.fsset", + "id.diskset", "id.partitions", + "intf", "instPath", "dir")), ("upgrademigfind", upgradeMigrateFind, ("dispatch", "id.partitions")), ("upgrademigratefs", ("id.fsset", "id.partitions")), ("bootloadersetup", bootloaderSetupChoices, ("dispatch", "id.bootloader", |