blob: 0368bd25df687e4a7a0003dfc9b4df4c0c3b76cf (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
if php -i | grep 'bzip2 compression => disabled' >/dev/null 2>&1; then
echo -e "Warning: bz2.so must be loaded in your php.ini to use ${pkgname}"
echo -e "You may use \"sed -i 's/;extension=bz2.so/extension=bz2.so/g' /etc/php/php.ini\" to change your configuration"
fi
}
post_upgrade() {
post_install
}
|