diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2009-06-14 21:23:43 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2009-06-14 21:23:43 +0000 |
commit | 762e5ed8583b3523ad0aceb4a6703a6f61560653 (patch) | |
tree | 299c6c71688fd78d607d5991f7a2ef3be581ec77 /src/lib/Options.py | |
parent | 0c5d30e131ad5262b19170d25f328ca1154e3407 (diff) | |
download | bcfg2-762e5ed8583b3523ad0aceb4a6703a6f61560653.tar.gz bcfg2-762e5ed8583b3523ad0aceb4a6703a6f61560653.tar.bz2 bcfg2-762e5ed8583b3523ad0aceb4a6703a6f61560653.zip |
Implement -z (for Independent entries only, a la -b) (Resolves Ticket #616)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5281 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Options.py')
-rw-r--r-- | src/lib/Options.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/Options.py b/src/lib/Options.py index a2d9d46ca..c916b96fe 100644 --- a/src/lib/Options.py +++ b/src/lib/Options.py @@ -252,8 +252,10 @@ 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=[], - cmd='-b', odesc='<bundle>', cook=colon_split) +CLIENT_BUNDLE = Option('only configure the given bundle(s)', default=[], + cmd='-b', odesc='<bundle:bundle>', cook=colon_split) +CLIENT_INDEP = Option('only configure the given bundle(s)', default=False, + cmd='-z') CLIENT_KEVLAR = Option('run in kevlar (bulletproof) mode', default=False, cmd='-k', ) CLIENT_DLIST = Option('run client in server decision list mode', default=False, |