summaryrefslogtreecommitdiff
path: root/lib/chef/application
diff options
context:
space:
mode:
authorMarc Chamberland <mchamberland@pbsc.com>2019-04-06 20:16:04 -0400
committerMarc Chamberland <mchamberland@pbsc.com>2019-04-19 19:02:35 -0400
commitfd0508d32a3cd683b827c5d25f2bd07f0311243b (patch)
tree455ffe250d8e3f46ac31e369b1c4a553b12a18b1 /lib/chef/application
parent33d1f9e3ad1013387a3b3a53d6969c905942b692 (diff)
downloadchef-fd0508d32a3cd683b827c5d25f2bd07f0311243b.tar.gz
fixing tests
Signed-off-by: Marc Chamberland <mchamberland@pbsc.com>
Diffstat (limited to 'lib/chef/application')
-rw-r--r--lib/chef/application/client.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/application/client.rb b/lib/chef/application/client.rb
index 3758abe378..ee3e0f7f04 100644
--- a/lib/chef/application/client.rb
+++ b/lib/chef/application/client.rb
@@ -441,7 +441,7 @@ class Chef::Application::Client < Chef::Application
def interval_run_chef_client
if Chef::Config[:daemonize]
- Chef::Daemon.daemonize(Chef::DIST::CLIENT)
+ Chef::Daemon.daemonize(Chef::Dist::CLIENT)
# Start first daemonized run after configured number of seconds
if Chef::Config[:daemonize].is_a?(Integer)
@@ -504,7 +504,7 @@ class Chef::Application::Client < Chef::Application
end
def unforked_interval_error_message
- "Unforked #{Chef::Dist::CLIENT} interval runs are disabled in Chef 12." +
+ "Unforked #{Chef::Dist::CLIENT} interval runs are disabled in #{Chef::Dist::PRODUCT} 12." +
"\nConfiguration settings:" +
("\n interval = #{Chef::Config[:interval]} seconds" if Chef::Config[:interval]).to_s +
"\nEnable #{Chef::Dist::CLIENT} interval runs by setting `:client_fork = true` in your config file or adding `--fork` to your command line options."