summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-02-05 17:18:36 -0800
committerTim Smith <tsmith84@gmail.com>2020-02-06 13:52:57 -0800
commitf8c467b2a5df25230f979848589401c5704e1a73 (patch)
tree001193efd3f4db28b75710f0e01b83d733fa0e56
parenta295ae458dac01cac16f07f258143803ccdbc47a (diff)
downloadchef-f8c467b2a5df25230f979848589401c5704e1a73.tar.gz
Properly name the modes in the help text
It's Chef Infra Client mode vs. Chef Infra Solo vs. Standalone Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/shell.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/shell.rb b/lib/chef/shell.rb
index a12916110b..15dde343c8 100644
--- a/lib/chef/shell.rb
+++ b/lib/chef/shell.rb
@@ -241,7 +241,7 @@ module Shell
option :standalone,
short: "-a",
long: "--standalone",
- description: "standalone session",
+ description: "Standalone session",
default: true,
boolean: true
@@ -255,7 +255,7 @@ module Shell
option :client,
short: "-z",
long: "--client",
- description: "#{Chef::Dist::CLIENT} session",
+ description: "#{Chef::Dist::PRODUCT} session",
boolean: true
option :solo_legacy_shell,