mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-03 21:14:26 +08:00
Fix: Proper detection for libcurl4t64
This commit is contained in:
parent
8a5aed21e8
commit
5113756b08
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ do_ubuntu() {
|
|||
apt-get install -y postfix postfix-pcre postfix-ldap
|
||||
apt-get install -y opendkim
|
||||
local libcurl="libcurl4"
|
||||
if "$(apt-cache search --names-only '^libcurl4t64$')" != ""; then
|
||||
if [ "$(apt-cache search --names-only '^libcurl4t64$')" != "" ]; then
|
||||
libcurl="libcurl4t64"
|
||||
fi
|
||||
apt-get install -y ca-certificates tzdata supervisor rsyslog bash opendkim-tools curl ${libcurl} libjsoncpp25 sasl2-bin postfix-lmdb procps logrotate cron net-tools colorized-logs netcat-openbsd ${RELEASE_SPECIFIC_PACKAGES}
|
||||
|
|
Loading…
Add table
Reference in a new issue