Skip to content

Commit

Permalink
Merge pull request #3652 from chef/alexpop/fix_audit_mode_explanation
Browse files Browse the repository at this point in the history
fix explanation for configuring audit mode in client.rb
  • Loading branch information
thommay committed Aug 13, 2015
2 parents 21fc71a + 75f52cb commit bf1dc8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/chef/application/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,9 @@ def unforked_interval_error_message
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

Expand Down

0 comments on commit bf1dc8f

Please sign in to comment.