mirror of
https://github.com/YunoHost-Apps/dont-code_ynh.git
synced 2024-09-03 18:26:34 +02:00
alternate complete install
This commit is contained in:
parent
c6eaabe9a9
commit
50dfdf37e2
1 changed files with 2 additions and 2 deletions
|
@ -314,7 +314,7 @@ ynh_install_mongo() {
|
|||
|
||||
ynh_print_info --message="Installing MongoDB Community Edition ..."
|
||||
local mongo_debian_release=$(ynh_get_debian_release)
|
||||
local mongo_packages="mongodb-org mongodb-org-server mongodb-org-tools mongodb-mongosh"
|
||||
local mongo_packages="mongodb-org"
|
||||
|
||||
if [[ $(cat /proc/cpuinfo) != *"avx"* && "$mongo_version" != "4.4" ]]; then
|
||||
ynh_print_warn --message="Installing Mongo 4.4 as $mongo_version is not compatible with your cpu (see https://docs.mongodb.com/manual/administration/production-notes/#x86_64)."
|
||||
|
@ -323,7 +323,7 @@ ynh_install_mongo() {
|
|||
if [[ "$mongo_version" == "4.4" ]]; then
|
||||
ynh_print_warn --message="Switching to special package install for Mongo 4.4 to see if that works."
|
||||
#mongo_debian_release=buster
|
||||
mongo_packages="mongodb-mongosh-shared-openssl11"
|
||||
mongo_packages="mongodb-org-server mongodb-org-tools mongodb-mongosh-shared-openssl11"
|
||||
fi
|
||||
|
||||
ynh_install_extra_app_dependencies --repo="deb http://repo.mongodb.org/apt/debian $mongo_debian_release/mongodb-org/$mongo_version main" --package=$mongo_packages --key="https://www.mongodb.org/static/pgp/server-$mongo_version.asc"
|
||||
|
|
Loading…
Reference in a new issue