summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/kickstart.py b/kickstart.py
index eb79bd9df..445107e69 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1182,10 +1182,11 @@ def fullCommandPass(anaconda, file, earlyKS):
anaconda.id.storage.ignoredDisks = earlyKS.ignoredisk.ignoredisk
anaconda.id.storage.exclusiveDisks = earlyKS.ignoredisk.onlyuse
- anaconda.id.storage.clearPartType = earlyKS.clearpart.type
- anaconda.id.storage.clearPartDisks = earlyKS.clearpart.drives
- if earlyKS.clearpart.initAll:
- anaconda.id.storage.reinitializeDisks = earlyKS.clearpart.initAll
+ if earlyKS.clearpart.type is not None:
+ anaconda.id.storage.clearPartType = earlyKS.clearpart.type
+ anaconda.id.storage.clearPartDisks = earlyKS.clearpart.drives
+ if earlyKS.clearpart.initAll:
+ anaconda.id.storage.reinitializeDisks = earlyKS.clearpart.initAll
storage.storageInitialize(anaconda)