This file is indexed.

postrm is in bootp 2.4.3-18build1.

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
#!/bin/sh -e
# $Id: postrm,v 1.1 1999/03/14 04:26:30 herbert Exp $

if [ "$1" = remove -o "$1" = purge ]; then
    if [ -f /usr/sbin/update-inetd ]; then
	update-inetd --remove "bootps		dgram	udp	wait	root	/usr/sbin/bootpd	bootpd -i -t 120"
    fi
fi