From bc0b482c5f066a623d29d53299cb79bc697fcc42 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 10 Jul 2001 16:15:16 +0000 Subject: don't fall over with zerombr even though it's not back to working --- kickstart.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'kickstart.py') 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' ]) -- cgit