From 2c5edecc9801488063b93da903cc98f02be7135d Mon Sep 17 00:00:00 2001 From: dlehman Date: Thu, 22 Feb 2007 00:06:15 +0000 Subject: * 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) --- dispatch.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dispatch.py') 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, ), -- cgit