mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 16:42:41 +00:00
Fix installing smbclient on old Alpine Linux versions
Test: smbclient
This commit is contained in:
parent
0414c15e2d
commit
da5be4b1cd
1 changed files with 9 additions and 0 deletions
|
@ -1810,6 +1810,15 @@ installRemoteModule() {
|
||||||
addConfigureOption 'enable-redis-zstd' 'yes'
|
addConfigureOption 'enable-redis-zstd' 'yes'
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
smbclient)
|
||||||
|
if test -z "$installRemoteModule_version"; then
|
||||||
|
case "$DISTRO_VERSION" in
|
||||||
|
alpine@3.7 | alpine@3.8 | alpine@3.9)
|
||||||
|
installRemoteModule_version=1.0.1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
;;
|
||||||
snuffleupagus)
|
snuffleupagus)
|
||||||
if test -z "$installRemoteModule_version"; then
|
if test -z "$installRemoteModule_version"; then
|
||||||
installRemoteModule_version=0.7.0
|
installRemoteModule_version=0.7.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue