summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-09-15 13:47:16 -0400
committerChris Lumens <clumens@redhat.com>2009-09-22 16:37:07 -0400
commit6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096 (patch)
tree6cbcb918fce43769c6b635bf2af98446845a55fc /dispatch.py
parent45bb27f111d21efb547e42486961b1de4fb98541 (diff)
downloadanaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.tar.gz
anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.tar.xz
anaconda-6675704a3afbc6cdea455e0a6bcbc9dd6ebd8096.zip
Remove the installation number screen.
Whatever form the new entitlement system takes, it is unlikely it will look like what we've currently got. It's probably better to start over fresh than attempt to adapt what we've got into supporting the new system. This will also allow testing of the RHEL6 tree with the right product name without requiring testers to enter a key.
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/dispatch.py b/dispatch.py
index 7dd2c5409..c4cfa7a16 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -30,8 +30,6 @@ from packages import firstbootConfiguration
from packages import betaNagScreen
from packages import setupTimezone
from packages import setFileCons
-from packages import regKeyScreen
-from packages import writeRegKey
from storage import storageInitialize
from storage import storageComplete
from storage.partitioning import doAutoPartition
@@ -71,7 +69,6 @@ installSteps = [
("language", ),
("keyboard", ),
("betanag", betaNagScreen, ),
- ("regkey", regKeyScreen, ),
("storageinit", storageInitialize, ),
("findrootparts", findRootParts, ),
("findinstall", ),
@@ -107,7 +104,6 @@ installSteps = [
("firstboot", firstbootConfiguration, ),
("instbootloader", writeBootloader, ),
("writeksconfig", writeKSConfiguration, ),
- ("writeregkey", writeRegKey, ),
("setfilecon", setFileCons, ),
("copylogs", copyAnacondaLogs, ),
("methodcomplete", doMethodComplete, ),