unbound-formula/test/integration/default/controls/services.rb
Alexander Weidinger ab5d798c84 feat: convert template-formula to unbound-formula
BREAKING CHANGE: changed all state names and ids
2021-04-19 00:52:42 +02:00

24 lines
530 B
Ruby

# frozen_string_literal: true
# Prepare platform "finger"
platform_finger = system.platform[:finger].split('.').first.to_s
control 'unbound.service.running' do
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