photoprism/scripts/init/install-mariadb-client.sh
2022-02-18 17:40:58 +01:00

12 lines
342 B
Bash
Executable file

#!/usr/bin/env bash
# abort if the user is not root
if [[ $(id -u) != "0" ]]; then
echo "Usage: run install-mariadb-client.sh as root" 1>&2
exit 1
fi
curl -Ls https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | bash -s -- --mariadb-server-version="mariadb-10.6"
apt-get update
apt-get -qq install mariadb-client
echo "Installed."