From 64eb208d733e96c79f30ca1447d6a1a65319708c Mon Sep 17 00:00:00 2001 From: mirivlad Date: Sun, 8 Sep 2024 20:17:46 +0800 Subject: [PATCH] Change install MySQL to MariaDB --- create_host.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_host.sh b/create_host.sh index f85e0b6..db9d39b 100755 --- a/create_host.sh +++ b/create_host.sh @@ -26,7 +26,7 @@ fi if ! command -v mysql > /dev/null; then echo "Установка mysql..." - sudo apt-get install mysql-server -y + sudo apt-get install mariadb-server -y fi PHP_VER="$(php -v | head -n 1 | cut -d " " -f 2 | cut -f1-2 -d".")"