Skip to content

Commit e23da83

Browse files
author
Colleen Murphy
committed
Fix operating system release fact for SLES
PE on SLES 11 does not support the operatingsystemmajrelease fact.
1 parent 25b6534 commit e23da83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifests/params.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
$basedir = '/usr'
9696
}
9797
'SLES','SLED': {
98-
if $::operatingsystemmajrelease >= 12 {
98+
if $::operatingsystemrelease >= 12 {
9999
$client_package_name = 'mariadb-client'
100100
$server_package_name = 'mariadb'
101101
$basedir = undef

0 commit comments

Comments
 (0)