blob: a2b6eabc4da53a429994b05cb5846e4d26ac2f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# If there are no arguments, then "shift" will fail (bug 626496).
if [ $# -eq 0 ]; then
PHP_SLOT=$(eselect php show fpm)
else
PHP_SLOT=$1
shift
fi
exec "/usr/@libdir@/${PHP_SLOT}/bin/php-fpm" "${@}"
|