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

[fix] Stretch

This commit is contained in:
root 2018-04-25 13:20:44 +02:00
parent b254f5c4aa
commit c1e920027f
2 changed files with 3 additions and 6 deletions

View file

@ -6,6 +6,9 @@
# Package dependencies
pkg_dependencies="php5-cli php5-common php5-intl php5-json php5-mcrypt php-pear php-auth-sasl php-mail-mime php-patchwork-utf8 php-net-smtp php-net-socket php-crypt-gpg php-net-ldap2 php-net-ldap3"
if [ "$(lsb_release --codename --short)" != "jessie" ]; then
pkg_dependencies="$pkg_dependencies php-zip"
fi
# Plugins version
contextmenu_version=2.3

View file

@ -57,12 +57,6 @@ ynh_app_setting_set $app with_enigma $with_enigma
# INSTALL DEPENDENCIES
#=================================================
# jessie-backports is needed for php-net-ldap3
grep -q -R 'jessie-backports' /etc/apt/sources.list{,.d} || {
echo "deb http://httpredir.debian.org/debian jessie-backports main" \
| tee -a /etc/apt/sources.list.d/backports.list >/dev/null
}
ynh_install_app_dependencies "$pkg_dependencies"
#=================================================