inspec/test/cookbooks/os_prepare/recipes/apache.rb
2016-03-18 11:30:54 +01:00

14 lines
248 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# install apache service
case node['platform']
when 'ubuntu', 'centos', 'amazon', 'fedora'
return if node['platform_version'] == "15.10"
httpd_service 'default' do
action :create
end
end