Merge pull request #268 from mlocati/smbclient-old-alpines

Fix installing smbclient on old Alpine Linux versions
pull/269/head 1.1.43
Michele Locati 2021-01-21 17:36:16 +01:00 committed by GitHub
commit f1a8d0c66c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -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