mirror of
https://github.com/saltstack-formulas/template-formula.git
synced 2025-04-17 10:10:28 +00:00
13 lines
292 B
Ruby
13 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Overide by OS
|
|
package_name = 'bash'
|
|
package_name = 'cronie' if (os[:name] == 'centos') && os[:release].start_with?('6')
|
|
|
|
control 'TEMPLATE package' do
|
|
title 'should be installed'
|
|
|
|
describe package(package_name) do
|
|
it { should be_installed }
|
|
end
|
|
end
|