mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 00:22:40 +00:00
Check that memcached is configured correctly
Test: memcached, memcached+igbinary, memcached+msgpack, memcached+igbinary+msgpack
This commit is contained in:
parent
7520cb08b4
commit
83b22e786c
1 changed files with 18 additions and 0 deletions
18
scripts/tests/memcached
Executable file
18
scripts/tests/memcached
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
|
||||
MODULE_CONFIGURATION="$(php --ri memcached)"
|
||||
if test $1 -ge 70000; then
|
||||
if php --ri igbinary >/dev/null 2>/dev/null; then
|
||||
if test -z "$(printf '%s' "$MODULE_CONFIGURATION" | grep 'igbinary support => yes')"; then
|
||||
echo 'igbinary support has NOT been enabled!' >&2
|
||||
fi
|
||||
fi
|
||||
if php --ri msgpack >/dev/null 2>/dev/null; then
|
||||
if test -z "$(printf '%s' "$MODULE_CONFIGURATION" | grep 'msgpack support => yes')"; then
|
||||
echo 'msgpack support has NOT been enabled!' >&2
|
||||
fi
|
||||
fi
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue