summaryrefslogtreecommitdiffstats
path: root/instdata.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 /instdata.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 'instdata.py')
-rw-r--r--instdata.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/instdata.py b/instdata.py
index 91ca81ad5..56d939405 100644
--- a/instdata.py
+++ b/instdata.py
@@ -227,6 +227,11 @@ class InstallData:
f.write("nfs --server=%s --dir=%s\n" % (srv, dir))
break
+ if self.instClass.skipkey:
+ f.write("key --skip\n")
+ elif self.instClass.installkey:
+ f.write("key %s\n" %(self.instClass.installkey,))
+
self.instLanguage.writeKS(f)
if not self.isHeadless:
self.keyboard.writeKS(f)