summaryrefslogtreecommitdiff
path: root/chef-bin/bin
diff options
context:
space:
mode:
authorMark Anderson <mark@chef.io>2019-05-03 16:30:28 -0700
committerMark Anderson <mark@chef.io>2019-05-03 21:40:19 -0700
commita8dcabbb4a527816d4d19784fe2011dad28c470b (patch)
treeba1c78c52215ec02b9fbe52ec6937a317b2e56c0 /chef-bin/bin
parentc1fec9e0b6c4195be55e89d749bbffbae470539b (diff)
downloadchef-a8dcabbb4a527816d4d19784fe2011dad28c470b.tar.gz
Use keyword arguments for acceptance
Signed-off-by: Mark Anderson <mark@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 f9f01710b2..05b975a118 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(true)
+Chef::Application::Apply.new.run(enforce_license: true)
diff --git a/chef-bin/bin/chef-client b/chef-bin/bin/chef-client
index df0a18f9a6..45a6af546a 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(true)
+Chef::Application::Client.new.run(enforce_license: true)
diff --git a/chef-bin/bin/chef-solo b/chef-bin/bin/chef-solo
index 2768f3224c..7a2168230d 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(true)
+Chef::Application::Solo.new.run(enforce_license: true)