14 lines
224 B
Bash
Executable File
14 lines
224 B
Bash
Executable File
#!/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
|