postrm is in python-central 0.6.17ubuntu1.
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 | #! /bin/sh -e
if [ "$1" = "purge" ]; then
# remove log file
rm -f /var/log/pycentral.log
rm -f /usr/share/pycentral-data/pyversions.pyc
if [ -d /var/lib/pycentral ]; then
rm -f /var/lib/pycentral/delayed-pkgs
rm -f /var/lib/pycentral/pkgremove
rmdir --ignore-fail-on-non-empty /var/lib/pycentral || true
fi
fi
|