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.
2 parents 3b16473 + 6de7dba commit 3a9770fCopy full SHA for 3a9770f
1 file changed
lib/databases/mysql
@@ -141,12 +141,14 @@ EOF
141
chmod 0600 $HOME/.my.cnf
142
fi
143
# Install mysql-server
144
- if is_ubuntu || is_fedora; then
145
- if [[ $DISTRO =~ (rhel6|precise) ]]; then
+ if is_fedora; then
+ if [[ $DISTRO =~ (rhel6) ]]; then
146
install_package mysql-server
147
else
148
install_package mariadb-server
149
150
+ elif is_ubuntu; then
151
+ install_package mysql-server
152
elif is_suse; then
153
if ! is_package_installed mariadb; then
154
install_package mysql-community-server
0 commit comments