This file is indexed.

postrm is in partimage-server 0.6.8-2.2.

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
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	rm -f /etc/partimaged/partimaged.cert \
		/etc/partimaged/partimaged.key \
		/etc/partimaged/privkey.pem \
		/etc/partimaged/partimagedusers \
		/etc/partimaged/partimaged.rand \
		/etc/partimaged/passwd.db

	# I'm not using "rm -rf" due the user could have additional data
	rmdir /etc/partimaged || true
fi

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

## Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
	update-rc.d partimaged remove >/dev/null
fi
# End automatically added section
#

exit 0