apache-formula/test/integration/default/controls/services_spec.rb
2020-07-19 09:26:39 -03:00

20 lines
363 B
Ruby

# frozen_string_literal: true
control 'apache service' do
impact 0.5
title 'should be running and enabled'
service_name =
case platform[:family]
when 'debian', 'suse'
'apache2'
when 'redhat', 'fedora', 'linux'
'httpd'
end
describe service(service_name) do
it { should be_enabled }
it { should be_running }
end
end