diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-11-18 14:53:40 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-11-18 14:53:40 -0800 |
commit | dee1de9611aef8a8366bff0da2ace2dc7a4646b5 (patch) | |
tree | d847b54698ab2065ed8c51fd2a30ddf0be6cf305 /kitchen-tests | |
parent | 5d5a1aeeb5d5585548a8bacb06fa7a57d3ecc660 (diff) | |
download | chef-dee1de9611aef8a8366bff0da2ace2dc7a4646b5.tar.gz |
build build_essential for rhel
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/end_to_end/recipes/default.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb index f49cccd9a5..0af35f8c7a 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb @@ -2,7 +2,7 @@ # Cookbook:: end_to_end # Recipe:: default # -# Copyright:: 2014-2019, Chef Software, Inc. +# Copyright:: 2014-2019, Chef Software Inc. # hostname "chef-bk-ci.chef.io" @@ -36,7 +36,9 @@ yum_repository "epel" do only_if { platform_family?("rhel") } end -build_essential +build_essential do + raise_if_unsupported true +end include_recipe "::packages" |