mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
16 lines
376 B
Ruby
16 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
|