From f65a9b28ba355a05df908d0d13af28342ec1907d Mon Sep 17 00:00:00 2001 From: anmol26s Date: Thu, 2 Nov 2017 16:07:22 +0530 Subject: [PATCH] Added the "php-ldap" dependency ## Problem - *Issue https://github.com/YunoHost-Apps/nextcloud_ynh/issues/69* ``` Warning: [Exception] Warning: App "LDAP user and group backend" cannot be installed because the following dependencies are not fulfilled: The library ldap is not available. ``` Dependency not installed : LDAP plugin of PHP. ## Solution - *Install missing dependencies "php-ldap"* ## PR Status To be reviewed. ## Validation --- *Minor decision* - [ ] **Upgrade previous version** : - [ ] **Code review** : - [ ] **Approval (LGTM)** : - [ ] **Approval (LGTM)** : - [ ] **CI succeeded** : When the PR is mark as ready to merge, you have to wait for 3 days before really merge it. --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 3e7127d..eb4d1fc 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -3,7 +3,7 @@ # COMMON VARIABLES #================================================= -pkg_dependencies="php5-gd php5-json php5-intl php5-mcrypt php5-curl php5-apcu php5-imagick acl tar smbclient" +pkg_dependencies="php5-gd php5-json php5-intl php5-mcrypt php5-curl php5-apcu php5-imagick php-ldap acl tar smbclient" #================================================= # COMMON HELPERS