mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 08:32:42 +00:00
Add support for stomp
This commit is contained in:
parent
2984ef0a40
commit
56393d436e
3 changed files with 33 additions and 0 deletions
13
scripts/tests/stomp
Executable file
13
scripts/tests/stomp
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
|
||||
rc=0
|
||||
if test -z "$(php --ri stomp | grep 'SSL Support => enabled')"; then
|
||||
echo 'stomp has not been compiled with SSL support' >&2
|
||||
rc=1
|
||||
else
|
||||
echo 'stomp has been compiled with SSL support'
|
||||
fi
|
||||
exit $rc
|
Loading…
Add table
Add a link
Reference in a new issue