mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
19 lines
503 B
Ruby
19 lines
503 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
#
|
|
# prepares services
|
|
|
|
case node['platform']
|
|
when 'ubuntu'
|
|
# install ntp as a service
|
|
include_recipe 'apt::default'
|
|
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
|