This file is indexed.

prerm is in time 1.7-23.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
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#
# This is the prerm script for the Debian GNU/Linux time package
#
# Written by Dirk Eddelbuettel <edd@debian.org>   

set -e



case "$1" in
    upgrade)
	;;
    remove|purge)
	install-info --quiet --remove time.info.gz
	;;
    failed-upgrade|abort-install|abort-upgrade|disappear)
	;;
    *)
	echo "prerm called with unknown argument \`$1'" >&2
	;;
esac

exit 0