From 2a8ffcc9d2629342f3ece3a33b5e313750af40d4 Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Tue, 5 May 2020 07:42:30 -0500 Subject: [PATCH] Remove mysql-utilities Fixes #134 Package is not required. Package currently unavailable on Ubuntu 20.04. --- guac-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guac-install.sh b/guac-install.sh index 881e32c..2e72360 100755 --- a/guac-install.sh +++ b/guac-install.sh @@ -226,7 +226,7 @@ if [[ "${NAME}" == "Ubuntu" ]]; then LIBPNG="libpng-dev" fi if [ "${installMySQL}" = true ]; then - MYSQL="mysql-server mysql-client mysql-common mysql-utilities" + MYSQL="mysql-server mysql-client mysql-common" # Checking if (any kind of) mysql-client or compatible command installed. This is useful for existing mariadb server elif [ -x "$( command -v mysql )" ]; then MYSQL=""