mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-05 12:18:19 +00:00
96 lines
3.0 KiB
Bash
Executable File
96 lines
3.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# MongoDB Uninstaller
|
|
# Min. Requirement : GNU/Linux Ubuntu 18.04
|
|
# Last Build : 10/12/2021
|
|
# Author : MasEDI.Net (me@masedi.net)
|
|
# Since Version : 1.0.0
|
|
|
|
# Include helper functions.
|
|
if [[ "$(type -t run)" != "function" ]]; then
|
|
BASE_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )
|
|
# shellcheck disable=SC1091
|
|
. "${BASE_DIR}/helper.sh"
|
|
fi
|
|
|
|
# Make sure only root can run this installer script.
|
|
requires_root
|
|
|
|
function init_mongodb_removal() {
|
|
# Stop MongoDB server process.
|
|
if [[ $(pgrep -c mongod) -gt 0 ]]; then
|
|
run systemctl stop mongod
|
|
fi
|
|
|
|
if dpkg-query -l | awk '/mongodb/ { print $2 }' | grep -qwE "^mongodb"; then
|
|
echo "Found MongoDB package installation. Removing..."
|
|
|
|
# Remove MongoDB server.
|
|
#shellcheck disable=SC2046
|
|
run apt-get remove --purge -qq -y $(dpkg-query -l | awk '/mongodb/ { print $2 }')
|
|
if [[ "${FORCE_REMOVE}" == true ]]; then
|
|
run rm -f /etc/apt/sources.list.d/mongodb-org-*
|
|
fi
|
|
|
|
# Remove MongoDB config files.
|
|
warning "!! This action is not reversible !!"
|
|
|
|
if [[ "${AUTO_REMOVE}" == true ]]; then
|
|
if [[ "${FORCE_REMOVE}" == true ]]; then
|
|
REMOVE_MONGOD_CONFIG="y"
|
|
else
|
|
REMOVE_MONGOD_CONFIG="n"
|
|
fi
|
|
else
|
|
while [[ "${REMOVE_MONGOD_CONFIG}" != "y" && "${REMOVE_MONGOD_CONFIG}" != "n" ]]; do
|
|
read -rp "Remove MongoDB database and configuration files? [y/n]: " -e REMOVE_MONGOD_CONFIG
|
|
done
|
|
fi
|
|
|
|
if [[ "${REMOVE_MONGOD_CONFIG}" == Y* || "${REMOVE_MONGOD_CONFIG}" == y* ]]; then
|
|
[ -f /etc/mongod.conf ] && run rm -fr /etc/mongod.conf
|
|
[ -d /var/lib/mongodb ] && run rm -fr /var/lib/mongodb
|
|
|
|
echo "All your MongoDB database and configuration files deleted permanently."
|
|
fi
|
|
else
|
|
echo "MongoDB package not found, possibly installed from source."
|
|
echo "Remove it manually!!"
|
|
|
|
MONGOD_BIN=$(command -v mongod)
|
|
|
|
echo "MongoDB server binary executable: ${MONGOD_BIN}"
|
|
fi
|
|
|
|
# Final test.
|
|
if [[ "${DRYRUN}" != true ]]; then
|
|
if [[ -z $(command -v mongod) ]]; then
|
|
success "MongoDB server removed succesfully."
|
|
else
|
|
info "Unable to remove MongoDB server."
|
|
fi
|
|
else
|
|
info "MongoDB server removed in dry run mode."
|
|
fi
|
|
}
|
|
|
|
echo "Uninstalling MongoDB server..."
|
|
|
|
if [[ -n $(command -v mongod) ]]; then
|
|
if [[ "${AUTO_REMOVE}" == true ]]; then
|
|
REMOVE_MONGOD="y"
|
|
else
|
|
while [[ "${REMOVE_MONGOD}" != "y" && "${REMOVE_MONGOD}" != "n" ]]; do
|
|
read -rp "Are you sure to remove MongoDB server? [y/n]: " -e REMOVE_MONGOD
|
|
done
|
|
fi
|
|
|
|
if [[ "${REMOVE_MONGOD}" == Y* || "${REMOVE_MONGOD}" == y* || "${AUTO_REMOVE}" == true ]]; then
|
|
init_mongodb_removal "$@"
|
|
else
|
|
echo "Found MongoDB server, but not removed."
|
|
fi
|
|
else
|
|
info "Oops, MongoDB installation not found."
|
|
fi
|