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.

8 lines
270 B

#!/usr/bin/env bash
echo "Try to find php-selector for hestiacp"
update-alternatives --display php | grep hestiacp-php-selector
if [ $? -ne 0 ]; then
echo "Register php-selector"
update-alternatives --install /usr/bin/php php /usr/bin/hestiacp-php-selector 1
fi