summaryrefslogtreecommitdiff
blob: 3a6b2720fa67c082d14cc122e68697120ae53438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

. /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" "${@}"