This file is indexed.

prerm is in havp 0.92a-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
#! /bin/sh
# prerm script for havp
#
# see: dh_installdeb(1)

init_error() {
echo "E: Error stopping service, ignoring..."
}

# Automatically added by dh_installinit
if [ -x "/etc/init.d/havp" ]; then
	invoke-rc.d havp stop || init_error
fi
# End automatically added section