postinst is in php5-imagick 3.1.0~rc1-1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh
set -e
# uncomment module loading (install after remove case)
if test -e /etc/php5/conf.d/imagick.ini
then
sed -i s/\;extension/extension/g /etc/php5/conf.d/imagick.ini
fi
if test "$1" = "configure"
then
ucf /usr/share/php5-imagick/imagick.ini-dist /etc/php5/conf.d/imagick.ini
fi
exit 0
|