summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-04-02 14:19:09 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-04-02 14:19:09 -0400
commite59ffe8f211e7bf2314402b96b44e0e72021c15f (patch)
tree0b19d8831b3be5df76f180bd90b99e8ce043fef9 /tools
parentbef04ca6ed60f51f04756df5a063379c0089321d (diff)
downloadbcfg2-e59ffe8f211e7bf2314402b96b44e0e72021c15f.tar.gz
bcfg2-e59ffe8f211e7bf2314402b96b44e0e72021c15f.tar.bz2
bcfg2-e59ffe8f211e7bf2314402b96b44e0e72021c15f.zip
fix bogus bundle_quick option handling in bcfg2_local.py
Diffstat (limited to 'tools')
-rwxr-xr-xtools/bcfg2_local.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/bcfg2_local.py b/tools/bcfg2_local.py
index 70e8fc0b2..edb5a7101 100755
--- a/tools/bcfg2_local.py
+++ b/tools/bcfg2_local.py
@@ -68,7 +68,8 @@ def main():
# CLIENT_BUNDLEQUICK option uses -Q, just like the server repo
# option. the server repo is more important for this
# application.
- del optinfo['bundle_quick']
+ optinfo['bundle_quick'] = Bcfg2.Options.Option('bundlequick',
+ default=False)
setup = Bcfg2.Options.OptionParser(optinfo)
setup.parse(sys.argv[1:])