Merge "Do not install mysql if mariadb is installed on openSUSE"
This commit is contained in:
commit
7ad51b4a47
@ -131,7 +131,9 @@ EOF
|
||||
if is_ubuntu || is_fedora; then
|
||||
install_package mysql-server
|
||||
elif is_suse; then
|
||||
install_package mysql-community-server
|
||||
if ! is_package_installed mariadb; then
|
||||
install_package mysql-community-server
|
||||
fi
|
||||
else
|
||||
exit_distro_not_supported "mysql installation"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user