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-05 17:18:36 -0800
commit503798696bcf55d6171e6b86d8e169f3038271a3 (patch)
tree3c4aaa0c0355efa048bcaa82db8ec886ba4e8eb2
parentb80f18cd06f073ec1270a81ff226a539be6e1614 (diff)
downloadchef-503798696bcf55d6171e6b86d8e169f3038271a3.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 9673ed2ce2..17e1d782c3 100644
--- a/lib/chef/shell.rb
+++ b/lib/chef/shell.rb
@@ -263,7 +263,7 @@ module Shell
option :standalone,
short: "-a",
long: "--standalone",
- description: "standalone session",
+ description: "Standalone session",
default: true,
boolean: true
@@ -277,7 +277,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,