inspec/test/cookbooks/os_prepare/recipes/prep_container.rb
2016-08-05 10:52:03 +02:00

15 lines
376 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
#
# prepares container for normal use :-)
# install docker pre-conditions
if ['ubuntu', 'debian'].include?(node['platform'])
include_recipe('apt')
# if package lsb-release & procps is not installed
# chef returns an empty node['lsb']['codename']
package("lsb-release")
package("procps")
end