From 06874f260d4f20c677c4e2567b3a9147f0609085 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Tue, 24 Feb 2026 09:23:23 +0100 Subject: [PATCH] Update package installation command for MongoDB tools --- install/databasus-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/databasus-install.sh b/install/databasus-install.sh index 701fe04cf..d4262dcdc 100644 --- a/install/databasus-install.sh +++ b/install/databasus-install.sh @@ -34,7 +34,7 @@ MONGO_ARCH=$(get_system_arch uname) [[ "$(get_os_info id)" == "ubuntu" ]] && MONGO_DIST="ubuntu2204" || MONGO_DIST="debian12" tmp_file=$(mktemp) curl -fsSL -o "$tmp_file" "https://fastdl.mongodb.org/tools/db/mongodb-database-tools-${MONGO_DIST}-${MONGO_ARCH}-100.14.1.deb" -$STD dpkg -i "$tmp_file" || $STD apt-get install -f -y --no-install-recommends +$STD dpkg -i "$tmp_file" || $STD apt install -f -y --no-install-recommends rm -f "$tmp_file" mkdir -p /usr/local/mongodb-database-tools/bin [[ -f /usr/bin/mongodump ]] && ln -sf /usr/bin/mongodump /usr/local/mongodb-database-tools/bin/mongodump