1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wekan_ynh.git synced 2024-09-03 20:36:09 +02:00

Fix comparison

This commit is contained in:
yalh76 2021-06-30 22:56:01 +02:00
parent d0e6a30898
commit 1881a0f9f5

View file

@ -310,7 +310,7 @@ ynh_install_mongo() {
ynh_print_info --message="Installing MongoDB..." ynh_print_info --message="Installing MongoDB..."
# Define Mongo Service Name # Define Mongo Service Name
if $(dpkg --compare-versions $(cat /etc/debian_version) gt "10.0") if dpkg --compare-versions $(cat /etc/debian_version) ge 10.0
then then
ynh_print_info --message="Installing MongoDB Community Edition..." ynh_print_info --message="Installing MongoDB Community Edition..."
ynh_install_extra_app_dependencies --repo="$MONGO_CE_REPO" --package="$MONGO_CE_DEPENDENCIES" --key="$MONGO_CE_KEY" ynh_install_extra_app_dependencies --repo="$MONGO_CE_REPO" --package="$MONGO_CE_DEPENDENCIES" --key="$MONGO_CE_KEY"