summarylogtreecommitdiffstats
path: root/pdepend.install
blob: d686ec9887bb04c5dd9895dc03365ea4b78121aa (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"
    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
}