summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/bcfg2_local.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/bcfg2_local.py b/tools/bcfg2_local.py
index 2b9d39342..70e8fc0b2 100755
--- a/tools/bcfg2_local.py
+++ b/tools/bcfg2_local.py
@@ -64,6 +64,11 @@ class LocalClient(Client):
def main():
optinfo = Bcfg2.Options.CLIENT_COMMON_OPTIONS
optinfo.update(Bcfg2.Options.SERVER_COMMON_OPTIONS)
+ if 'bundle_quick' in optinfo:
+ # CLIENT_BUNDLEQUICK option uses -Q, just like the server repo
+ # option. the server repo is more important for this
+ # application.
+ del optinfo['bundle_quick']
setup = Bcfg2.Options.OptionParser(optinfo)
setup.parse(sys.argv[1:])