prerm is in efingerd 1.6.5build1.
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
# pre removal script for the Debian GNU/Linux efingerd package
set -e
update-inetd --remove 'finger\t.*'
#update-inetd --pattern efingerd --disable finger
#update-inetd --group INFO --add 'finger stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/in.fingerd'
#update-inetd --comment-chars '#<efingerd># ' --enable finger
|