We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67f0eb commit 5ee7876Copy full SHA for 5ee7876
manifests/params.pp
@@ -171,9 +171,10 @@
171
}
172
173
'Debian': {
174
- if $::operatingsystem == 'Debian' {
+ if $::operatingsystem == 'Debian' or
175
+ ($::operatingsystem == 'Ubuntu' and versioncmp($::operatingsystemrelease, '20.04') >= 0) {
176
$provider = 'mariadb'
- } else { # Ubuntu
177
+ } else {
178
$provider = 'mysql'
179
180
if $provider == 'mariadb' {
manifests/server/config.pp
@@ -34,7 +34,7 @@
34
35
36
#Debian: Creating world readable directories before installing.
37
- case $::operatingsystem {
+ case $::osfamily {
38
39
if $managed_dirs {
40
$managed_dirs.each | $entry | {
0 commit comments