blob: d370a14b0013cfec52da57be923731c1b13eabbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo
echo "php-humbug-box is installed as executable 'box'."
if ! /usr/bin/php -i | grep Phar >/dev/null; then
echo
echo "[WARNING] the Phar extension of php must be enabled."
echo "[WARNING] check if the line extension=phar.so is commented out in your php.ini"
fi
if ! /usr/bin/php -i | grep 'phar.readonly.*Off.*' >/dev/null; then
echo
echo "[WARNING] the phar.readonly option of php must be set to 'Off'."
fi
}
post_upgrade() {
post_install
}
|