diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-01-17 17:21:34 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-01-17 17:21:34 +0000 |
commit | 9bc7d3cdd3d3bb8dc36442ef6129468711f426e8 (patch) | |
tree | 3173ffdf7e4f859f0db5d5d8abc03a91098d33b8 | |
parent | f168f665d6bcb15aab44521656eba220687f335d (diff) | |
download | bcfg2-9bc7d3cdd3d3bb8dc36442ef6129468711f426e8.tar.gz bcfg2-9bc7d3cdd3d3bb8dc36442ef6129468711f426e8.tar.bz2 bcfg2-9bc7d3cdd3d3bb8dc36442ef6129468711f426e8.zip |
Fix bundle mode
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4252 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | src/lib/Options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Options.py b/src/lib/Options.py index 17c13c09b..fc1f63a54 100644 --- a/src/lib/Options.py +++ b/src/lib/Options.py @@ -182,7 +182,7 @@ CLIENT_CACHE = Option('store the configuration in a file', default=False, cmd='-c', odesc="<cache path>") CLIENT_REMOVE = Option('force removal of additional configuration items', default=False, cmd='-r', odesc="<entry type|all>") -CLIENT_BUNDLE = Option('only configure the given bundle', default=False, +CLIENT_BUNDLE = Option('only configure the given bundle', default='', cmd='-b', odesc='<bundle>', cook=colon_split) CLIENT_KEVLAR = Option('run in kevlar (bulletproof) mode', default=False, cmd='-k', ) |