Added mariadb latest install from repo

This commit is contained in:
Eliezer Croitoru 2024-11-21 01:27:51 +02:00
parent 5f4b854a17
commit a76dae774a

13
install-latest-mariadb.sh Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e
set -x
wget "https://r.mariadb.com/downloads/mariadb_repo_setup" -O "mariadb_repo_setup"
bash mariadb_repo_setup
dnf remove mariadb-gssapi-server -y
dnf install MariaDB-server -y
set +e
set +x