summaryrefslogtreecommitdiffstats
path: root/tools/bcfg2_local.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-03-28 10:22:53 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-03-28 10:22:53 -0400
commit52824a1cf8786c318269f71f0cc7c234d4a92f73 (patch)
tree6c26cdb5c7c8a877b22b5228b3d16814d93716fb /tools/bcfg2_local.py
parent3d60058e1361ece220964d6e25245b6cf3a1e6e1 (diff)
downloadbcfg2-52824a1cf8786c318269f71f0cc7c234d4a92f73.tar.gz
bcfg2-52824a1cf8786c318269f71f0cc7c234d4a92f73.tar.bz2
bcfg2-52824a1cf8786c318269f71f0cc7c234d4a92f73.zip
bcfg2_local.py: remove duplicate -Q options
Diffstat (limited to 'tools/bcfg2_local.py')
-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:])