#!/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/lib64/${PHP_SLOT}/bin/php-fpm" "${@}"
