inspec/test/cookbooks/os_prepare/recipes/service.rb
Miah Johnson 6c19e81a06 Remove authors tags from source files.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -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