From e1a7fe9887886044b07587b3ec2caa2ff53ebfb2 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Mon, 23 Feb 2009 12:21:24 -0600 Subject: Updates to make existing code use the new storage module. --- dispatch.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dispatch.py') diff --git a/dispatch.py b/dispatch.py index b773404dd..a09a86183 100644 --- a/dispatch.py +++ b/dispatch.py @@ -34,8 +34,9 @@ from packages import setupTimezone from packages import setFileCons from packages import regKeyScreen from packages import writeRegKey -from partitions import partitionObjectsInitialize -from partitions import partitioningComplete +from storage import storageInitialize +from storage import storageComplete +from storage.partitioning import doAutoPartition from bootloader import writeBootloader, bootloaderSetupChoices from flags import flags from upgrade import upgradeMountFilesystems, queryUpgradeArch @@ -71,13 +72,13 @@ installSteps = [ ("keyboard", ), ("betanag", betaNagScreen, ), ("regkey", regKeyScreen, ), + ("storageinit", storageInitialize, ), ("findrootparts", findRootParts, ), ("findinstall", ), ("network", ), ("timezone", ), ("accounts", ), ("setuptime", setupTimezone, ), - ("partitionobjinit", partitionObjectsInitialize, ), ("parttype", ), ("autopartitionexecute", doAutoPartition, ), ("partition", ), @@ -88,8 +89,7 @@ installSteps = [ ("addswap", ), ("upgrademigfind", upgradeMigrateFind, ), ("upgrademigratefs", ), - ("partitiondone", partitioningComplete, ), - ("migratefilesystems", doMigrateFilesystems, ), + ("storagedone", storageComplete, ), ("enablefilesystems", turnOnFilesystems, ), ("upgbootloader", ), ("bootloadersetup", bootloaderSetupChoices, ), -- cgit