postinst is in pump 0.8.24-7.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 | #!/bin/sh
# $Id: pump.postinst,v 1.3 2003/09/13 02:58:04 herbert Exp $
set -e
if
[ "$1" = configure ] && [ -n "$2" ] &&
dpkg --compare-versions "$2" lt 0.8.11-2
then
rm -f /etc/default/pump /etc/init.d/pump /etc/rc?.d/???pump
fi
|