Skip to content
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

(FM-5985) - Addition of support for Ubuntu 18.04 to mysql #1104

Merged
merged 1 commit into from
Jul 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,11 +391,11 @@ The MySQL module has an example task that allows a user to execute arbitary SQL
This module has been tested on:

* RedHat Enterprise Linux 5, 6, 7
* Debian 6, 7, 8
* Debian 8, 9
* CentOS 5, 6, 7
* Ubuntu 10.04, 12.04, 14.04, 16.04
* Scientific Linux 5, 6
* SLES 11
* Ubuntu 14.04, 16.04, 18.04
* Scientific Linux 6, 7
* SLES 11 SPI, 12

Testing on other platforms has been minimal and cannot be guaranteed.

Expand Down
3 changes: 2 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@
"operatingsystem": "Ubuntu",
"operatingsystemrelease": [
"14.04",
"16.04"
"16.04",
"18.04"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/types/mysql_plugin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
end
elsif fact('osfamily') =~ %r{Debian}
if fact('operatingsystem') =~ %r{Ubuntu}
if fact('operatingsystemrelease') =~ %r{^16\.04}
if fact('operatingsystemrelease') =~ %r{^16\.04|^18\.04}
# On Xenial running 5.7.12, the example plugin does not appear to be available.
plugin = 'validate_password'
plugin_lib = 'validate_password.so'
Expand Down