summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/kickstart.py b/kickstart.py
index 1ab29638e..3a5291752 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -407,9 +407,11 @@ class KickstartBase(BaseInstallClass):
self.setKeyboard(id, args[0])
self.skipSteps.append("keyboard")
- def doZeroMbr(self, args):
- if args[0] == "yes":
- self.setZeroMbr(1)
+ def doZeroMbr(self, id, args):
+ # XXX fix me
+ pass
+## if args[0] == "yes":
+## self.setZeroMbr(1)
def doMouse(self, id, args):
(args, extra) = isys.getopt(args, '', [ 'device=', 'emulthree' ])