You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-eselect/eselect-php/files/php-fpm-launcher-r2

16 lines
272 B

#!/bin/sh
set -o errexit
. /lib/gentoo/functions.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/$(get_libdir)/${PHP_SLOT}/bin/php-fpm" "${@}"