mirror of
https://github.com/inspec/inspec
synced 2024-12-18 09:03:12 +00:00
a5309ea392
Signed-off-by: Ryan Davis <zenspider@chef.io>
15 lines
398 B
Ruby
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
|