Skip to content

Commit 2603411

Browse files
committed
Merge pull request #824 from ih84ds/patch-1
Default mysqld_type should be "mysql"
2 parents c3820ec + 5695cef commit 2603411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/puppet/provider/mysql.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def self.mysqld_type
2424
mysqld_version_string.scan(/mariadb/i) { return "mariadb" }
2525
mysqld_version_string.scan(/\s\(mysql/i) { return "mysql" }
2626
mysqld_version_string.scan(/\s\(percona/i) { return "percona" }
27-
nil
27+
return "mysql"
2828
end
2929

3030
def mysqld_type

0 commit comments

Comments
 (0)