summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authordlehman <dlehman>2007-02-22 00:06:15 +0000
committerdlehman <dlehman>2007-02-22 00:06:15 +0000
commit2c5edecc9801488063b93da903cc98f02be7135d (patch)
treef135f77f7dea2199b358c6f2a891e5ca96088a79 /dispatch.py
parent27c231de0fe23d95150e9baa6639e9d258dbc677 (diff)
downloadanaconda-2c5edecc9801488063b93da903cc98f02be7135d.tar.gz
anaconda-2c5edecc9801488063b93da903cc98f02be7135d.tar.xz
anaconda-2c5edecc9801488063b93da903cc98f02be7135d.zip
* partedUtils.py (openDevices): don't relabel disks that contain
protected partitions (#220331) * autopart.py (doClearPartAction): clear all non-protected partitions from disks that contain a protected partition IFF initAll is set * partedUtils.py (hasProtectedPartitions): new method to check if a drive contains protected partitions * packages.py (writeRegKey): method to write out regkey * dispatch.py: add writeregkey step * installclass.py (BaseInstallClass): add regkey fields and step * instdata.py: include regkey settings in anaconda-ks.cfg * packages.py (regKeyScreen): allow access to regkey screen while moving backwards (#219361) * installclasses/rhel.py: add support for real regkeys (via instnum)
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py
index e96565fbb..07f1adbd4 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -27,6 +27,7 @@ from packages import betaNagScreen
from packages import setupTimezone
from packages import setFileCons
from packages import regKeyScreen
+from packages import writeRegKey
from partitioning import partitionObjectsInitialize
from partitioning import partitioningComplete
from bootloader import writeBootloader, bootloaderSetupChoices
@@ -105,6 +106,7 @@ installSteps = [
("instbootloader", writeBootloader, ),
("writexconfig", writeXConfiguration, ),
("writeksconfig", writeKSConfiguration, ),
+ ("writeregkey", writeRegKey, ),
("setfilecon", setFileCons, ),
("copylogs", copyAnacondaLogs, ),
("methodcomplete", doMethodComplete, ),