summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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', )