Merge pull request #611 from cmurphy/sles12
Fix operating system release fact for SLES
This commit is contained in:
commit
f235f34cab
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class mysql::params {
|
||||||
$basedir = '/usr'
|
$basedir = '/usr'
|
||||||
}
|
}
|
||||||
'SLES','SLED': {
|
'SLES','SLED': {
|
||||||
if $::operatingsystemmajrelease >= 12 {
|
if $::operatingsystemrelease >= 12 {
|
||||||
$client_package_name = 'mariadb-client'
|
$client_package_name = 'mariadb-client'
|
||||||
$server_package_name = 'mariadb'
|
$server_package_name = 'mariadb'
|
||||||
$basedir = undef
|
$basedir = undef
|
||||||
|
|
Loading…
Reference in a new issue