summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2015-03-09 10:48:37 -0700
committerClaire McQuin <claire@getchef.com>2015-03-09 10:48:37 -0700
commit67ce1c33d2a56f7b44a163d78752271e87a8f2d6 (patch)
tree73d79a311885150118bd337035b2042316a810e2
parentb57ede8e5d829f623aceb7d7b77631f9c63d539f (diff)
downloadchef-mcquin/audit-use-desc.tar.gz
Fix errors in audit mode settings description.mcquin/audit-use-desc
-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 d5dc936f83..31ab02823c 100644
--- a/lib/chef/application/client.rb
+++ b/lib/chef/application/client.rb
@@ -439,9 +439,9 @@ class Chef::Application::Client < Chef::Application
end
def audit_mode_settings_explaination
- "\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