postrm is in libax25 0.0.11-6.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 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/sh
# Debian libax25 package post removal script
# Copyright 2002 Patrick Ouellette
# Licensed under the GNU General Public License, version 2. See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
#
#
set -e
# Automatically added by dh_makeshlibs
if [ "$1" = "remove" ]; then
ldconfig
fi
# End automatically added section
if [ "$1" = "remove" ]; then
ldconfig
fi
if [ "$1" = "purge" ]; then
if [ -d /etc/ax25 ]; then
rm -r /etc/ax25
fi
fi
exit 0
|