From 84b9fb1579638bfb7ac39112195fd99ef45b82c2 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 28 Sep 2006 21:00:41 +0000 Subject: Don't check the updates image source by default in the partitioning UI. --- anaconda | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'anaconda') diff --git a/anaconda b/anaconda index 05bd29e76..d41b29ec7 100755 --- a/anaconda +++ b/anaconda @@ -238,6 +238,7 @@ def parseOptions(): # Miscellaneous op.add_option("--module", action="append", default=[]) op.add_option("--nomount", dest="rescue_nomount", action="store_true", default=False) + op.add_option("--updates", dest="updateSrc", action="store", type="string") return op.parse_args() @@ -503,6 +504,7 @@ class Anaconda: self.isKickstart = False self.rescue_mount = True self.rescue = False + self.updateSrc = None def setDispatch(self): self.dispatch = dispatch.Dispatcher(self) @@ -631,6 +633,9 @@ if __name__ == "__main__": # Default is to prompt to mount the installed system. anaconda.rescue_mount = not opts.rescue_nomount + if opts.updateSrc: + anaconda.updateSrc = opts.updateSrc + if opts.method: anaconda.methodstr = opts.method -- cgit