summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom May <thom@may.lt>2015-08-13 14:50:56 +0100
committerThom May <thom@may.lt>2015-08-13 14:50:56 +0100
commitbf1dc8f226954812b0f1b0a1e7a04b7619a70b4a (patch)
treed96af4d3394fa2aca16eb5debe2bf4cb7095d224
parent21fc71a1176c3eeb73f10ca709379f9a5d6ec843 (diff)
parent75f52cb124667b61308f2c3880adf32c94d13eb9 (diff)
downloadchef-bf1dc8f226954812b0f1b0a1e7a04b7619a70b4a.tar.gz
Merge pull request #3652 from chef/alexpop/fix_audit_mode_explanation
fix explanation for configuring audit mode in client.rb
-rw-r--r--lib/chef/application/client.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/application/client.rb b/lib/chef/application/client.rb
index 409680b553..73eda81343 100644
--- a/lib/chef/application/client.rb
+++ b/lib/chef/application/client.rb
@@ -449,9 +449,9 @@ class Chef::Application::Client < Chef::Application
end
def audit_mode_settings_explanation
- "\n* To enable audit mode after converge, use command line option `--audit-mode enabled` or set `:audit_mode = :enabled` in your config file." +
- "\n* To disable audit mode, use command line option `--audit-mode disabled` or set `:audit_mode = :disabled` in your config file." +
- "\n* To only run audit mode, use command line option `--audit-mode audit-only` or set `:audit_mode = :audit_only` in your config file." +
+ "\n* To enable audit mode after converge, use command line option `--audit-mode enabled` or set `audit_mode :enabled` in your config file." +
+ "\n* To disable audit mode, use command line option `--audit-mode disabled` or set `audit_mode :disabled` in your config file." +
+ "\n* To only run audit mode, use command line option `--audit-mode audit-only` or set `audit_mode :audit_only` in your config file." +
"\nAudit mode is disabled by default."
end