diff options
author | Tim Smith <tsmith84@gmail.com> | 2015-10-18 20:43:39 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2015-10-18 20:43:39 -0700 |
commit | 1b2786a02598ae3f2a98ad74bba415d8ffb62bd0 (patch) | |
tree | e9a9b5fac87a4624d860fb66b210237251d32815 /lib/chef | |
parent | 1dd6fee90b57951a8d1d6b6618131407452ebd37 (diff) | |
download | chef-1b2786a02598ae3f2a98ad74bba415d8ffb62bd0.tar.gz |
Use why-run vs. why_run or whyrun
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/client.rb | 2 | ||||
-rw-r--r-- | lib/chef/data_bag.rb | 2 | ||||
-rw-r--r-- | lib/chef/data_bag_item.rb | 2 | ||||
-rw-r--r-- | lib/chef/node.rb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/client.rb b/lib/chef/client.rb index e2d76092e2..b2a00a7d01 100644 --- a/lib/chef/client.rb +++ b/lib/chef/client.rb @@ -273,7 +273,7 @@ class Chef if Chef::Config[:why_run] == true # why_run should probably be renamed to why_converge - Chef::Log.debug("Not running controls 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/data_bag.rb b/lib/chef/data_bag.rb index 8475774fa1..401ba6f63f 100644 --- a/lib/chef/data_bag.rb +++ b/lib/chef/data_bag.rb @@ -144,7 +144,7 @@ class Chef def save begin if Chef::Config[:why_run] - Chef::Log.warn("In whyrun mode, so NOT performing data bag save.") + Chef::Log.warn("In why-run mode, so NOT performing data bag save.") else create end diff --git a/lib/chef/data_bag_item.rb b/lib/chef/data_bag_item.rb index 9f92e26c50..31c9b69330 100644 --- a/lib/chef/data_bag_item.rb +++ b/lib/chef/data_bag_item.rb @@ -170,7 +170,7 @@ class Chef r = chef_server_rest begin if Chef::Config[:why_run] - Chef::Log.warn("In whyrun mode, so NOT performing data bag item save.") + Chef::Log.warn("In why-run mode, so NOT performing data bag item save.") else r.put_rest("data/#{data_bag}/#{item_id}", self) end diff --git a/lib/chef/node.rb b/lib/chef/node.rb index 1e4a850277..ad065cc02b 100644 --- a/lib/chef/node.rb +++ b/lib/chef/node.rb @@ -609,7 +609,7 @@ class Chef # so then POST to create. begin if Chef::Config[:why_run] - Chef::Log.warn("In whyrun mode, so NOT performing node save.") + Chef::Log.warn("In why-run mode, so NOT performing node save.") else chef_server_rest.put_rest("nodes/#{name}", data_for_save) end |