mirror of
				https://git.koehlerweb.org/frodovdr/guac-install
				synced 2025-10-30 23:06:44 +01:00 
			
		
		
		
	Added fallback for mysql-client when using MariaDB (#110)
* Fized mysql-client installation error with existing MariaDB server * Fized permissions * Changed command availability detection
This commit is contained in:
		| @@ -199,6 +199,9 @@ if [[ "${NAME}" == "Ubuntu" ]]; then | ||||
|     fi | ||||
|     if [ "$installMySQL" = true ]; then | ||||
|         MYSQL="mysql-server mysql-client mysql-common mysql-utilities" | ||||
|     # Checking if (any kind of) mysql-client or compatible command installed. This is useful for existing mariadb server | ||||
|     elif type "mysql" > /dev/null; then | ||||
| 	MYSQL="" | ||||
|     else | ||||
|         MYSQL="mysql-client" | ||||
|     fi | ||||
|   | ||||
		Reference in New Issue
	
	Block a user