summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiß <holger@zedat.fu-berlin.de>2011-06-21 12:38:40 +0200
committerHolger Weiß <holger@zedat.fu-berlin.de>2011-06-21 12:38:40 +0200
commit0957c3c73880448ca461aad90cebe7cf85717ddb (patch)
tree6f4db7c2c71d93a663b2e017914e90a29b735367
parent61898874c8acc06fe5b3ce07de341a20d857e997 (diff)
downloadbcfg2-0957c3c73880448ca461aad90cebe7cf85717ddb.tar.gz
bcfg2-0957c3c73880448ca461aad90cebe7cf85717ddb.tar.bz2
bcfg2-0957c3c73880448ca461aad90cebe7cf85717ddb.zip
Correct the description of bcfg2(1)'s "-z" option
The "-z" option is for use with Independent collections instead of Bundles.
-rw-r--r--man/bcfg2.12
-rw-r--r--src/lib/Options.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/bcfg2.1 b/man/bcfg2.1
index 03368b400..0e947a21c 100644
--- a/man/bcfg2.1
+++ b/man/bcfg2.1
@@ -171,7 +171,7 @@ Run bcfg2 in verbose mode.
.TP
.BR "\-z"
-Only configure the given bundle(s).
+Only configure independent entries, ignore bundles.
.RE
.SH "SEE ALSO"
.BR bcfg2-server(8),
diff --git a/src/lib/Options.py b/src/lib/Options.py
index 0d978c519..619b16787 100644
--- a/src/lib/Options.py
+++ b/src/lib/Options.py
@@ -323,7 +323,7 @@ CLIENT_BUNDLE = Option('Only configure the given bundle(s)', default=[],
cmd='-b', odesc='<bundle:bundle>', cook=colon_split)
CLIENT_BUNDLEQUICK = Option('only verify/configure the given bundle(s)', default=False,
cmd='-Q')
-CLIENT_INDEP = Option('Only configure the given bundle(s)', default=False,
+CLIENT_INDEP = Option('Only configure independent entries, ignore bundles', default=False,
cmd='-z')
CLIENT_KEVLAR = Option('Run in kevlar (bulletproof) mode', default=False,
cmd='-k', )