Skip to content

Commit 9e81c9e

Browse files
authored
Merge pull request #1104 from david22swan/FM-5985
(FM-5985) - Addition of support for Ubuntu 18.04 to mysql
2 parents 3dce162 + d41e7a6 commit 9e81c9e

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -391,11 +391,11 @@ The MySQL module has an example task that allows a user to execute arbitary SQL
391391
This module has been tested on:
392392

393393
* RedHat Enterprise Linux 5, 6, 7
394-
* Debian 6, 7, 8
394+
* Debian 8, 9
395395
* CentOS 5, 6, 7
396-
* Ubuntu 10.04, 12.04, 14.04, 16.04
397-
* Scientific Linux 5, 6
398-
* SLES 11
396+
* Ubuntu 14.04, 16.04, 18.04
397+
* Scientific Linux 6, 7
398+
* SLES 11 SPI, 12
399399

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

metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171
"operatingsystem": "Ubuntu",
7272
"operatingsystemrelease": [
7373
"14.04",
74-
"16.04"
74+
"16.04",
75+
"18.04"
7576
]
7677
}
7778
],

spec/acceptance/types/mysql_plugin_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
end
1717
elsif fact('osfamily') =~ %r{Debian}
1818
if fact('operatingsystem') =~ %r{Ubuntu}
19-
if fact('operatingsystemrelease') =~ %r{^16\.04}
19+
if fact('operatingsystemrelease') =~ %r{^16\.04|^18\.04}
2020
# On Xenial running 5.7.12, the example plugin does not appear to be available.
2121
plugin = 'validate_password'
2222
plugin_lib = 'validate_password.so'

0 commit comments

Comments
 (0)