diff options
author | Tim Smith <tsmith@chef.io> | 2018-04-27 14:37:35 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-04-27 14:37:35 -0700 |
commit | 6a012bd225aa24d14cca9ee70010a663cf733682 (patch) | |
tree | c5e52a577d48d8c4b0e2190fd7c7daac6977ace6 /kitchen-tests | |
parent | a068d3cde6105a591da24d1a5ff35bde26c16214 (diff) | |
download | chef-6a012bd225aa24d14cca9ee70010a663cf733682.tar.gz |
Allow build_essential resource to be used without setting a namebuild_name
This is the same as apt_update. It seems odd to use this resource with a name like this:
```ruby
build_essential "build-essential"
```
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/base/recipes/default.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/cookbooks/base/recipes/default.rb b/kitchen-tests/cookbooks/base/recipes/default.rb index dac989cc81..ea0215ca96 100644 --- a/kitchen-tests/cookbooks/base/recipes/default.rb +++ b/kitchen-tests/cookbooks/base/recipes/default.rb @@ -25,7 +25,7 @@ yum_repository "epel" do only_if { platform_family?("rhel") } end -build_essential "install compilation tools" +build_essential include_recipe "::packages" |