diff options
author | Thom May <thom@may.lt> | 2015-08-13 14:50:56 +0100 |
---|---|---|
committer | Thom May <thom@may.lt> | 2015-08-13 14:50:56 +0100 |
commit | bf1dc8f226954812b0f1b0a1e7a04b7619a70b4a (patch) | |
tree | d96af4d3394fa2aca16eb5debe2bf4cb7095d224 /lib/chef/application | |
parent | 21fc71a1176c3eeb73f10ca709379f9a5d6ec843 (diff) | |
parent | 75f52cb124667b61308f2c3880adf32c94d13eb9 (diff) | |
download | chef-bf1dc8f226954812b0f1b0a1e7a04b7619a70b4a.tar.gz |
Merge pull request #3652 from chef/alexpop/fix_audit_mode_explanation
fix explanation for configuring audit mode in client.rb
Diffstat (limited to 'lib/chef/application')
-rw-r--r-- | lib/chef/application/client.rb | 6 |
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 |