From 67ce1c33d2a56f7b44a163d78752271e87a8f2d6 Mon Sep 17 00:00:00 2001 From: Claire McQuin Date: Mon, 9 Mar 2015 10:48:37 -0700 Subject: Fix errors in audit mode settings description. --- lib/chef/application/client.rb | 6 +++--- 1 file 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 -- cgit v1.2.1