inspec/test/cookbooks/os_prepare/recipes/package.rb
Tim Smith 2f89081f53 Remove direct usage of apt/yum cookbooks in the os_prepare cookbook
We have an apt_update resource now
Yum cookbook was never needed
dnf is now supported on Fedora out of the box

Signed-off-by: Tim Smith <tsmith@chef.io>
2019-02-13 16:02:41 -08:00

16 lines
314 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
#
# installs everything to do the package test
case node['platform_family']
when 'debian'
apt_update
package 'curl'
when 'rhel', 'fedora', 'amazon'
package 'curl'
when 'freebsd'
# do nothing
# TODO: implement Freebsd packages
end