[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 1/4] Use correct storage attribute for ks clearpart
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 1/4] Use correct storage attribute for ks clearpart
- Date: Fri, 6 Mar 2009 13:02:11 -0500
From: Radek Vykydal <rvykydal redhat com>
---
kickstart.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kickstart.py b/kickstart.py
index 8a6b743..8733e6b 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -237,8 +237,8 @@ class ClearPart(commands.clearpart.FC3_ClearPart):
if disk not in hds:
raise KickstartValueError, formatErrorMsg(self.lineno, msg="Specified nonexistent disk %s in clearpart command" % disk)
- self.handler.id.storage.autoClearPartType = self.type
- self.handler.id.storage.autoClearPartDrives = self.drives
+ self.handler.id.storage.clearPartType = self.type
+ self.handler.id.storage.clearPartDisks = self.drives
if self.initAll:
self.handler.id.storage.reinitializeDisks = self.initAll
--
1.6.1.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]