summaryrefslogtreecommitdiff
path: root/chef-bin/bin
diff options
context:
space:
mode:
authortyler-ball <tball@chef.io>2019-04-22 15:24:19 -0600
committerMark Anderson <mark@chef.io>2019-05-03 21:40:19 -0700
commitc1fec9e0b6c4195be55e89d749bbffbae470539b (patch)
tree896a549a31291b26b473a11deed67dd305df2133 /chef-bin/bin
parentdb12e959e88aae92b9414a7637007ce7263fed1a (diff)
downloadchef-c1fec9e0b6c4195be55e89d749bbffbae470539b.tar.gz
Only Chef Software binaries should enforce EULA
Signed-off-by: tyler-ball <tball@chef.io>
Diffstat (limited to 'chef-bin/bin')
-rwxr-xr-xchef-bin/bin/chef-apply2
-rwxr-xr-xchef-bin/bin/chef-client2
-rwxr-xr-xchef-bin/bin/chef-solo2
3 files changed, 3 insertions, 3 deletions
diff --git a/chef-bin/bin/chef-apply b/chef-bin/bin/chef-apply
index ddbdc66907..f9f01710b2 100755
--- a/chef-bin/bin/chef-apply
+++ b/chef-bin/bin/chef-apply
@@ -21,4 +21,4 @@
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
require "chef/application/apply"
-Chef::Application::Apply.new.run
+Chef::Application::Apply.new.run(true)
diff --git a/chef-bin/bin/chef-client b/chef-bin/bin/chef-client
index af27d7903d..df0a18f9a6 100755
--- a/chef-bin/bin/chef-client
+++ b/chef-bin/bin/chef-client
@@ -22,4 +22,4 @@ $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
require "chef"
require "chef/application/client"
-Chef::Application::Client.new.run
+Chef::Application::Client.new.run(true)
diff --git a/chef-bin/bin/chef-solo b/chef-bin/bin/chef-solo
index 06c0452d26..2768f3224c 100755
--- a/chef-bin/bin/chef-solo
+++ b/chef-bin/bin/chef-solo
@@ -21,4 +21,4 @@
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
require "chef/application/solo"
-Chef::Application::Solo.new.run
+Chef::Application::Solo.new.run(true)