mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-10 23:01:44 +00:00

* Include latest pre-salted images replacing EOL platforms - Ref: https://github.com/saltstack-formulas/template-formula/pull/148
15 lines
360 B
Ruby
15 lines
360 B
Ruby
# Override by OS
|
|
package_name = 'mariadb-server'
|
|
if os[:name] == 'suse' or os[:name] == 'opensuse'
|
|
package_name = 'mariadb'
|
|
elsif os[:name] == 'debian' and os[:release].start_with?('8')
|
|
package_name = 'mysql-server'
|
|
end
|
|
|
|
control 'mysql package' do
|
|
title 'should be installed'
|
|
|
|
describe package(package_name) do
|
|
it { should be_installed }
|
|
end
|
|
end
|