Files
hestiacp-php-selector/installer.sh
Alexey Berezhok 12f3b66b2b Initial commit
2024-08-21 23:01:22 +03:00

8 lines
270 B
Bash

#!/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