Removed MongoDB from WebUI install-script (#1824)

This commit is contained in:
Sukchan Lee 2022-11-24 13:20:39 +09:00
parent cb8c87f996
commit 8efa60d211
1 changed files with 5 additions and 29 deletions

View File

@ -91,6 +91,11 @@ fi
preinstall() {
if [ ! -x /usr/bin/mongod ]; then
print_status "First You need to install MongoDB packages."
exit 1
fi
PRE_INSTALL_PKGS=""
# Check that HTTPS transport is available to APT
@ -222,35 +227,6 @@ if [ "X${DISTRO}" == "Xdebian" ]; then
print_status "Found \"${DISTRO}\" in /etc/debian_version..."
fi
fi
print_status 'Removing Launchpad PPA Repository for MongoDB...'
for i in /etc/apt/sources.list.d/mongodb-org*; do
exec_cmd "rm -f $i"
done
print_status 'Adding the MongoDB signing key to your keyring...'
if [ -x /usr/bin/curl ]; then
exec_cmd_nobail "curl -sLf 'https://www.mongodb.org/static/pgp/server-6.0.asc' | apt-key add -"
else
exec_cmd_nobail "wget -qO - 'https://www.mongodb.org/static/pgp/server-6.0.asc' | apt-key add -"
fi
print_status "Creating apt sources list file for the MongoDB repo..."
exec_cmd "echo 'deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/6.0 multiverse' > /etc/apt/sources.list.d/mongodb-org-6.0.list"
if [ ! -x /usr/bin/mongod ]; then
MONGODB_INSTALL_PKGS="${MONGODB_INSTALL_PKGS} mongodb-org"
fi
if [ "X${MONGODB_INSTALL_PKGS}" != "X" ]; then
print_status "Populating apt-get cache..."
exec_cmd 'apt-get update'
print_status "Installing packages required for setup:${MONGODB_INSTALL_PKGS}..."
exec_cmd "apt-get install -y${MONGODB_INSTALL_PKGS} > /dev/null 2>&1"
fi
}
install() {