mirror of
https://github.com/inspec/inspec
synced 2024-11-27 07:00:39 +00:00
559d6d3178
* Modernize the kitchen config This is basically the same one we use in chef/chef * Modernize the omnibus deps * Remove cookbook constraints * Avoid security warnings when bundle installing * Use the ruby-cleanup project to slim the omnibus package We're using this in chef and DK to greatly reduce our artifact size. It's just a set of cleanup steps that are the same for all ruby omnibus projects. Signed-off-by: Tim Smith <tsmith@chef.io>
13 lines
292 B
Ruby
13 lines
292 B
Ruby
# encoding: utf-8
|
|
source 'https://supermarket.chef.io'
|
|
|
|
cookbook 'omnibus'
|
|
|
|
# Uncomment to use the latest version of the Omnibus cookbook from GitHub
|
|
# cookbook 'omnibus', github: 'chef-cookbooks/omnibus'
|
|
|
|
group :integration do
|
|
cookbook 'apt'
|
|
cookbook 'freebsd'
|
|
cookbook 'yum-epel'
|
|
end
|