-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Mariadb 11.x #1645
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
Facter.add('mysql_version') do | ||
confine { Facter::Core::Execution.which('mysql') } | ||
setcode do | ||
mysql_ver = Facter::Core::Execution.execute('mysql --version') | ||
mysql_ver = if Facter::Core::Execution.which('mysql') | ||
Facter::Core::Execution.execute('mysql --version') | ||
elsif Facter::Core::Execution.which('mariadb') | ||
Facter::Core::Execution.execute('mariadb --version') | ||
end | ||
mysql_ver.match(%r{\d+\.\d+\.\d+})[0] if mysql_ver | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
# frozen_string_literal: true | ||
|
||
Facter.add('mysqld_version') do | ||
confine { Facter::Core::Execution.which('mysqld') || Facter::Core::Execution.which('/usr/libexec/mysqld') } | ||
setcode do | ||
# Add /usr/libexec to PATH to find mysqld command | ||
Facter::Core::Execution.execute('env PATH=$PATH:/usr/libexec mysqld --no-defaults -V 2>/dev/null') | ||
if Facter::Core::Execution.which('mysqld') || Facter::Core::Execution.which('/usr/libexec/mysqld') | ||
Facter::Core::Execution.execute('env PATH=$PATH:/usr/libexec mysqld --no-defaults -V 2>/dev/null') | ||
elsif Facter::Core::Execution.which('mariadbd') | ||
Facter::Core::Execution.execute('mariadbd --no-defaults -V 2>/dev/null') | ||
end | ||
end | ||
end |
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -38,11 +38,35 @@ class Puppet::Provider::Mysql < Puppet::Provider | |||||||||||||||
].join(':') | ||||||||||||||||
|
||||||||||||||||
# rubocop:disable Style/HashSyntax | ||||||||||||||||
commands :mysql_raw => 'mysql' | ||||||||||||||||
commands :mysqld => 'mysqld' | ||||||||||||||||
commands :mysqladmin => 'mysqladmin' | ||||||||||||||||
commands :mysql_client => 'mysql' | ||||||||||||||||
commands :mariadb_client => 'mariadb' | ||||||||||||||||
Comment on lines
+41
to
+42
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You should probably use |
||||||||||||||||
commands :mysqld_service => 'mysqld' | ||||||||||||||||
commands :mariadbd_service => 'mariadbd' | ||||||||||||||||
commands :mysql_admin => 'mysqladmin' | ||||||||||||||||
commands :mariadb_admin => 'mariadb-admin' | ||||||||||||||||
# rubocop:enable Style/HashSyntax | ||||||||||||||||
|
||||||||||||||||
def self.mysql_raw(*args) | ||||||||||||||||
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i) | ||||||||||||||||
return mariadb_client(*args) | ||||||||||||||||
end | ||||||||||||||||
mysql_client(*args) | ||||||||||||||||
Comment on lines
+49
to
+53
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, I think we can assume Ruby 2.7 and use argument forwarding. Once you've defined them as optional, I wonder if this works:
Suggested change
|
||||||||||||||||
end | ||||||||||||||||
|
||||||||||||||||
def self.mysqld(*args) | ||||||||||||||||
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i) | ||||||||||||||||
return mariadb_client(*args) | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this really correct? With |
||||||||||||||||
end | ||||||||||||||||
mysqld_service(*args) | ||||||||||||||||
end | ||||||||||||||||
|
||||||||||||||||
def self.mysqladmin(*args) | ||||||||||||||||
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i) | ||||||||||||||||
return mariadb_client(*args) | ||||||||||||||||
end | ||||||||||||||||
mysql_admin(*args) | ||||||||||||||||
end | ||||||||||||||||
|
||||||||||||||||
# Optional defaults file | ||||||||||||||||
def self.defaults_file | ||||||||||||||||
"--defaults-extra-file=#{Facter.value(:root_home)}/.my.cnf" if File.file?("#{Facter.value(:root_home)}/.my.cnf") | ||||||||||||||||
|
@@ -62,8 +86,8 @@ def mysqld_type | |||||||||||||||
def self.mysqld_version_string | ||||||||||||||||
# As the possibility of the mysqld being remote we need to allow the version string to be overridden, | ||||||||||||||||
# this can be done by facter.value as seen below. In the case that it has not been set and the facter | ||||||||||||||||
# value is nil we use the mysql -v command to ensure we report the correct version of mysql for later use cases. | ||||||||||||||||
@mysqld_version_string ||= Facter.value(:mysqld_version) || mysqld('-V') | ||||||||||||||||
# value is nil we use an empty string so that default client/service are used. | ||||||||||||||||
@mysqld_version_string ||= Facter.value(:mysqld_version) || '' | ||||||||||||||||
end | ||||||||||||||||
|
||||||||||||||||
def mysqld_version_string | ||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm looking at this horrible hack above and wonder if it should use the proper API. Something like this probably works:
You can also use
is_optional
according to https://github.com/puppetlabs/puppet/blob/e227c27540975c25aa22d533a52424a9d2fc886a/lib/puppet/provider.rb#L177-L214.