diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-30 18:44:08 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-30 18:44:08 +0000 |
commit | 337cbe6b78809ed278d4412df2d13dd69c323834 (patch) | |
tree | 667fce48f1727c253c6db9cc25826efe2565efa3 | |
parent | ui/systools.glade: syslog and cron (diff) | |
download | anaconda-337cbe6b78809ed278d4412df2d13dd69c323834.tar.gz anaconda-337cbe6b78809ed278d4412df2d13dd69c323834.tar.bz2 anaconda-337cbe6b78809ed278d4412df2d13dd69c323834.zip |
Rearranged the screen order in the dispatcher to follow the handbook
-rw-r--r-- | dispatch.py | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/dispatch.py b/dispatch.py index 66eb052..de4ea7e 100644 --- a/dispatch.py +++ b/dispatch.py @@ -66,20 +66,18 @@ log = logging.getLogger("anaconda") # All install steps take the anaconda object as their sole argument. This # gets passed in when we call the function. installSteps = [ + # Welcome ("welcome", ), ("language", ), ("keyboard", ), ("betanag", betaNagScreen, ), + + # Preparing the Disks ("filtertype", ), ("filter", ), ("storageinit", storageInitialize, ), ("findrootparts", findRootParts, ), ("findinstall", ), - ("network", ), - ("timezone", ), - ("accounts", ), - ("useraccounts", ), - ("setuptime", setupTimezone, ), ("parttype", ), ("cleardiskssel", ), ("autopartitionexecute", doAutoPartition, ), @@ -93,9 +91,33 @@ installSteps = [ ("upgrademigratefs", ), ("storagedone", storageComplete, ), ("enablefilesystems", turnOnFilesystems, ), + + # Installing the Gentoo Installation Files + # make.conf + + # Installing the Gentoo Base System + # mirrorselect + # profile + # use + + # Configuring your System + ("network", ), + ("accounts", ), + ("timezone", ), + ("setuptime", setupTimezone, ), + + # Installing Necessary System Tools + # syslog and cron + + # Configuring the Bootloader ("upgbootloader", ), ("bootloadersetup", bootloaderSetupChoices, ), ("bootloader", ), + + # Finalizing your Gentoo Installation + ("useraccounts", ), + + # Install ("reposetup", doBackendSetup, ), ("tasksel", ), ("basepkgsel", doBasePackageSelect, ), |