
| Current Path : /var/lib/dpkg/info/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/lib/dpkg/info/firebird3.0-common.postrm |
#! /bin/sh
# postrm script for firebird3.0-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>
FB_VER="3.0"
RUN="/var/run/firebird/$FB_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 :