inspec/test/kitchen/cookbooks/os_prepare/recipes/service.rb
Miah Johnson 97a258ae69 Use a more obvious directory structure for kitchen testing
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 22:41:03 -07:00

15 lines
398 B
Ruby

#
# prepares services
case node["platform"]
when "ubuntu"
# install ntp as a service
package "ntp"
when "centos"
# install runit for alternative service mgmt
if node["platform_version"].to_i == 6
include_recipe "os_prepare::_runit_service_centos" unless node["osprepare"]["docker"]
include_recipe "os_prepare::_upstart_service_centos" unless node["osprepare"]["docker"]
end
end