diff options
author | Julian C. Dunn <jdunn@aquezada.com> | 2015-03-11 20:43:26 -0400 |
---|---|---|
committer | Julian C. Dunn <jdunn@aquezada.com> | 2015-03-11 20:43:26 -0400 |
commit | 1a168a79f5aecc405409ca2a9e293a3a2db5dccb (patch) | |
tree | e2815b9dd4c9c12fd8a030f1caaf4a4398e36bbb /lib | |
parent | 47fe4a9dfeb177dbcd2fc1ed8f487f3375dd0dbb (diff) | |
download | chef-1a168a79f5aecc405409ca2a9e293a3a2db5dccb.tar.gz |
Fix more incorrect terminology
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/client.rb | 2 | ||||
-rw-r--r-- | lib/chef/run_context.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/client.rb b/lib/chef/client.rb index 3b4f8d4683..7fd7bd9e3f 100644 --- a/lib/chef/client.rb +++ b/lib/chef/client.rb @@ -450,7 +450,7 @@ class Chef if Chef::Config[:why_run] == true # why_run should probably be renamed to why_converge - Chef::Log.debug("Not running audits in 'why_run' mode - this mode is used to see potential converge changes") + Chef::Log.debug("Not running controls in 'why_run' mode - this mode is used to see potential converge changes") elsif Chef::Config[:audit_mode] != :disabled audit_error = run_audits(run_context) end diff --git a/lib/chef/run_context.rb b/lib/chef/run_context.rb index fc54506407..4f0215bfd4 100644 --- a/lib/chef/run_context.rb +++ b/lib/chef/run_context.rb @@ -50,7 +50,7 @@ class Chef # recipes, which is triggered by #load. (See also: CookbookCompiler) attr_accessor :resource_collection - # The list of audits (control groups) to execute during the audit phase + # The list of control groups to execute during the audit phase attr_accessor :audits # A Hash containing the immediate notifications triggered by resources |