postrm is in welcome2l 3.04-25.
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 | #!/bin/sh
# $Id: postrm,v 1.2 2003-05-18 12:11:49 robert Exp $
set -e
W2L="welcome2l"
# Remove /etc/issue.welcome2l
if [ "$1" = remove ] || [ "$1" = purge ]; then
rm -f /etc/issue."$W2L"
fi
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
update-rc.d welcome2l remove >/dev/null
fi
# End automatically added section
|