unbound-formula/test/integration/default/controls/services.rb

24 lines
530 B
Ruby
Raw Normal View History

2021-03-31 10:10:43 +02:00
# frozen_string_literal: true
# Prepare platform "finger"
platform_finger = system.platform[:finger].split('.').first.to_s
control 'unbound.service.running' do
2021-03-31 10:10:43 +02:00
title 'The service should be installed, enabled and running'
# Overide by `platform_finger`
service_name =
case platform_finger
when 'centos-6', 'amazonlinux-1'
'crond'
else
'systemd-journald'
end
describe service(service_name) do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end
end