Change install MySQL to MariaDB

This commit is contained in:
mirivlad 2024-09-08 20:17:46 +08:00
parent 6032bd1237
commit 64eb208d73
1 changed files with 1 additions and 1 deletions

View File

@ -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".")"