summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Pop <al3xpop@gmail.com>2015-07-09 11:43:40 +0100
committerAlex Pop <al3xpop@gmail.com>2015-07-09 11:43:40 +0100
commit75f52cb124667b61308f2c3880adf32c94d13eb9 (patch)
tree001bffd6d6f0b08ef972f14c1da43e77419d2852
parent60af687362aa962b577450fff54b88ed21e8c713 (diff)
downloadchef-75f52cb124667b61308f2c3880adf32c94d13eb9.tar.gz
fix explanation for configuring audit mode in client.rbalexpop/fix_audit_mode_explanation
-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