diff options
author | Holger Weiß <holger@zedat.fu-berlin.de> | 2011-06-04 23:52:02 +0200 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2011-06-14 12:36:46 -0500 |
commit | 80fb796b9a02403e5e90e7bde73fb2e44b3f5222 (patch) | |
tree | 9db8d48625dc7fae9d9686b0836e8b3317ed41c7 /src/lib | |
parent | 368b34bcdd509d24bcc82ccbdbd056455bba7c37 (diff) | |
download | bcfg2-80fb796b9a02403e5e90e7bde73fb2e44b3f5222.tar.gz bcfg2-80fb796b9a02403e5e90e7bde73fb2e44b3f5222.tar.bz2 bcfg2-80fb796b9a02403e5e90e7bde73fb2e44b3f5222.zip |
Document the "decision" option in bcfg2.conf(5)
Add documentation for the "decision" option to the bcfg2.conf(5) man
page. Also, note that it can be overridden using "-l none" on the
bcfg2(1) command line.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Options.py b/src/lib/Options.py index 9980566fb..5c0829df7 100644 --- a/src/lib/Options.py +++ b/src/lib/Options.py @@ -325,9 +325,9 @@ 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, +CLIENT_DLIST = Option('Run client in server decision list mode', default='none', cf=('client', 'decision'), - cmd='-l', odesc='<whitelist|blacklist>') + cmd='-l', odesc='<whitelist|blacklist|none>') CLIENT_FILE = Option('Configure from a file rather than querying the server', default=False, cmd='-f', odesc='<specification path>') CLIENT_QUICK = Option('Disable some checksum verification', default=False, |