diff options
author | Mark Anderson <mark@chef.io> | 2019-05-03 16:30:28 -0700 |
---|---|---|
committer | Mark Anderson <mark@chef.io> | 2019-05-03 21:40:19 -0700 |
commit | a8dcabbb4a527816d4d19784fe2011dad28c470b (patch) | |
tree | ba1c78c52215ec02b9fbe52ec6937a317b2e56c0 /chef-bin/bin | |
parent | c1fec9e0b6c4195be55e89d749bbffbae470539b (diff) | |
download | chef-a8dcabbb4a527816d4d19784fe2011dad28c470b.tar.gz |
Use keyword arguments for acceptance
Signed-off-by: Mark Anderson <mark@chef.io>
Diffstat (limited to 'chef-bin/bin')
-rwxr-xr-x | chef-bin/bin/chef-apply | 2 | ||||
-rwxr-xr-x | chef-bin/bin/chef-client | 2 | ||||
-rwxr-xr-x | chef-bin/bin/chef-solo | 2 |
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) |