mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
12 lines
213 B
Ruby
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
|