prerm is in bidentd 1.1.4-1.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 | #!/bin/sh
set -e
# I don't care what the user said; this should be disabled now, otherwise it
# would invoke us after we are deinstalled.
if [ "$1" = "remove" ]; then
update-inetd --pattern "/usr/sbin/bidentd" --disable ident
fi
|