unbound-formula/test/integration/default/controls/packages.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

22 lines
449 B
Ruby

# frozen_string_literal: true
# Prepare platform "finger"
platform_finger = system.platform[:finger].split('.').first.to_s
control 'unbound.package.install' do
title 'The required package should be installed'
# Overide by `platform_finger`
package_name =
case platform_finger
when 'centos-6', 'amazonlinux-1'
'cronie'
else
'bash'
end
describe package(package_name) do
it { should be_installed }
end
end