postrm is in firebird2.5-common 2.5.4.26856.ds4-1build1.
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 30 31 32 | #! /bin/sh
# postrm script for firebird2.5-common
set -eu
# summary of how this script can be called:
# * <postrm> `remove'
# * <postrm> `purge'
# * <old-postrm> `upgrade' <new-version>
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install'
# * <new-postrm> `abort-install' <old-version>
# * <new-postrm> `abort-upgrade' <old-version>
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
VER="2.5"
RUN="/var/run/firebird/$VER"
case "$1" in
remove)
# remove lock/init/guard files
rm -f $RUN/isc_lock1.*
rm -f $RUN/isc_init1.*
rm -f $RUN/isc_guard1.*
;;
esac
exit 0
# vi: set ts=8 sts=4 sw=4 filetype=sh ai et :
|