Add libldap-common to debian dependencies (#475)
* Add libldap-common to debian dependencies This used to be installed implicitly within debian-based docker containers by curl, but as of debian 11 isn't. This is needed to let secure LDAP work out of the box. Fixes #474 Test: ldap * Install libldap-common only on Debian 9 (stretch) or later Co-authored-by: Michele Locati <michele@locati.it>pull/481/head 1.4.6
parent
717e047d3c
commit
412d93afc2
|
@ -710,6 +710,9 @@ buildRequiredPackageLists() {
|
|||
buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile openldap-dev"
|
||||
;;
|
||||
ldap@debian)
|
||||
if test $DISTRO_VERSION_NUMBER -ge 9; then
|
||||
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libldap-common"
|
||||
fi
|
||||
buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile libldap2-dev"
|
||||
;;
|
||||
maxminddb@alpine)
|
||||
|
|
Loading…
Reference in New Issue