inspec/test/integration/cookbooks/os_prepare/recipes/service.rb
2015-11-13 09:54:30 +01:00

12 lines
213 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
#
# prepares services
# install ntp as a service on ubuntu
case node['platform']
when 'ubuntu'
include_recipe('apt')
package 'ntp'
end