Skip to content

Commit

Permalink
Fix operating system release fact for SLES
Browse files Browse the repository at this point in the history
PE on SLES 11 does not support the operatingsystemmajrelease fact.
  • Loading branch information
Colleen Murphy committed Nov 26, 2014
1 parent 25b6534 commit e23da83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
$basedir = '/usr'
}
'SLES','SLED': {
if $::operatingsystemmajrelease >= 12 {
if $::operatingsystemrelease >= 12 {
$client_package_name = 'mariadb-client'
$server_package_name = 'mariadb'
$basedir = undef
Expand Down

0 comments on commit e23da83

Please sign in to comment.