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

[fix] Bad signature

This commit is contained in:
ljf 2017-12-23 00:05:14 +01:00
parent 31782cc3de
commit 9c22e79dec
3 changed files with 3 additions and 3 deletions

View file

@ -51,7 +51,7 @@ ynh_app_setting_set $app port $port
ynh_install_nodejs 4.8.4 ynh_install_nodejs 4.8.4
# Install mongodb # Install mongodb
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 apt-key adv --fetch-keys https://www.mongodb.org/static/pgp/server-3.2.asc
echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
ynh_install_app_dependencies "mongodb-org mongodb-org-server mongodb-org-shell mongodb-org-mongos mongodb-org-tools" ynh_install_app_dependencies "mongodb-org mongodb-org-server mongodb-org-shell mongodb-org-mongos mongodb-org-tools"

View file

@ -55,7 +55,7 @@ ynh_system_user_create $app "$final_path"
ynh_install_nodejs 4.8.4 ynh_install_nodejs 4.8.4
# Install mongodb # Install mongodb
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 apt-key adv --fetch-keys https://www.mongodb.org/static/pgp/server-3.2.asc
echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.2 multiverse" > /etc/apt/sources.list.d/mongodb-org-3.2.list echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.2 multiverse" > /etc/apt/sources.list.d/mongodb-org-3.2.list
ynh_install_app_dependencies "mongodb-org mongodb-org-server mongodb-org-shell mongodb-org-mongos mongodb-org-tools" ynh_install_app_dependencies "mongodb-org mongodb-org-server mongodb-org-shell mongodb-org-mongos mongodb-org-tools"

View file

@ -53,7 +53,7 @@ if ynh_version_gt "0.54-2" "${version}" ; then
fi fi
if ynh_version_gt "0.54-3" "${version}" ; then if ynh_version_gt "0.54-3" "${version}" ; then
apt-key del EA312927 apt-key del EA312927
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 apt-key adv --fetch-keys https://www.mongodb.org/static/pgp/server-3.2.asc
fi fi
#================================================= #=================================================