mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-05 04:08:19 +00:00
94 lines
3.2 KiB
Bash
Executable File
94 lines
3.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# MariaDB (MySQL) Uninstaller
|
|
# Min. Requirement : GNU/Linux Ubuntu 14.04
|
|
# Last Build : 31/07/2019
|
|
# Author : ESLabs.ID (eslabs.id@gmail.com)
|
|
# Since Version : 1.0.0
|
|
|
|
# Include helper functions.
|
|
if [ "$(type -t run)" != "function" ]; then
|
|
BASEDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )
|
|
# shellchechk source=scripts/helper.sh
|
|
# shellcheck disable=SC1090
|
|
. "${BASEDIR}/helper.sh"
|
|
fi
|
|
|
|
# Make sure only root can run this installer script.
|
|
requires_root
|
|
|
|
function init_mariadb_removal() {
|
|
# Stop MariaDB mysql server process.
|
|
if [[ $(pgrep -c mysqld) -gt 0 ]]; then
|
|
run service mysql stop
|
|
fi
|
|
|
|
if [[ -n $(dpkg-query -l | grep mariadb-server | awk '/mariadb-server/ { print $2 }') ]]; then
|
|
echo "Found MariaDB package installation. Removing..."
|
|
|
|
# Remove MariaDB server.
|
|
run apt-get --purge remove -y libmariadbclient18 mariadb-backup mariadb-server mysql-common
|
|
|
|
# Remove repository.
|
|
if "${FORCE_REMOVE}"; then
|
|
run rm -f /etc/apt/sources.list.d/MariaDB-*.list
|
|
fi
|
|
elif [[ -n $(dpkg-query -l | grep mysql-server | awk '/mysql-server/ { print $2 }') ]]; then
|
|
echo "Found MySQL package installation. Removing..."
|
|
|
|
# Remove MySQL server.
|
|
run apt-get --purge remove -y mysql-client mysql-server mysql-common
|
|
else
|
|
echo "Mariadb package not found, possibly installed from source."
|
|
echo "Remove it manually."
|
|
|
|
MYSQL_BIN=$(command -v mysql)
|
|
MYSQLD_BIN=$(command -v mysqld)
|
|
|
|
echo "Which mysql bin: ${MYSQL_BIN}"
|
|
echo "which mysqld bin: ${MYSQLD_BIN}"
|
|
fi
|
|
|
|
# Remove MariaDB (MySQL) config files.
|
|
warning "!! This action is not reversible !!"
|
|
while [[ "${REMOVE_MYSQLCONFIG}" != "y" && "${REMOVE_MYSQLCONFIG}" != "n" && "${AUTO_REMOVE}" != true ]]; do
|
|
read -rp "Remove MariaDB (MySQL) database and configuration files? [y/n]: " \
|
|
-i n -e REMOVE_MYSQLCONFIG
|
|
done
|
|
if [[ "${REMOVE_MYSQLCONFIG}" == Y* || "${REMOVE_MYSQLCONFIG}" == y* || "${FORCE_REMOVE}" == true ]]; then
|
|
if [ -d /etc/mysql ]; then
|
|
run rm -fr /etc/mysql
|
|
fi
|
|
|
|
if [ -d /var/lib/mysql ]; then
|
|
run rm -fr /var/lib/mysql
|
|
fi
|
|
echo "All your SQL database and configuration files deleted permanently."
|
|
fi
|
|
|
|
# Final test.
|
|
if "${DRYRUN}"; then
|
|
warning "MariaDB (MySQL) server removed in dryrun mode."
|
|
else
|
|
if [[ -z $(command -v mysqld) ]]; then
|
|
status "MariaDB (MySQL) server removed."
|
|
else
|
|
warning "MariaDB (MySQL) server not removed."
|
|
fi
|
|
fi
|
|
}
|
|
|
|
echo "Uninstalling MariaDB (MySQL) server..."
|
|
if [[ -n $(command -v mysql) || -n $(command -v mysqld) ]]; then
|
|
while [[ "${REMOVE_MARIADB}" != "y" && "${REMOVE_MARIADB}" != "n" && "${AUTO_REMOVE}" != true ]]; do
|
|
read -rp "Are you sure to to remove MariaDB (MySQL)? [y/n]: " -e REMOVE_MARIADB
|
|
done
|
|
if [[ "${REMOVE_MARIADB}" == Y* || "${REMOVE_MARIADB}" == y* || "${AUTO_REMOVE}" == true ]]; then
|
|
init_mariadb_removal "$@"
|
|
else
|
|
echo "Found MariaDB (MySQL), but not removed."
|
|
fi
|
|
else
|
|
warning "Oops, MariaDB (MySQL) installation not found."
|
|
fi
|