This file is indexed.

prerm is in nut-client 2.7.4-5.1ubuntu2.

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
#!/bin/sh
set -e

handle_start_failure () {
# The MODE defined in /etc/nut/nut.conf shouldn't affect the exit code when the
# daemon is stopped. If it fails to stop, the maintainer script should fail
# too.
  return 1
}

# Automatically added by dh_installdeb/10.10.7ubuntu2
dpkg-maintscript-helper rm_conffile /etc/bash_completion.d/nut 2.7.1-1~ -- "$@"
# End automatically added section
# Automatically added by dh_installinit/10.10.7ubuntu2
if [ -x "/etc/init.d/nut-client" ] && [ "$1" = remove ]; then
	invoke-rc.d nut-client stop || handle_start_failure
fi
# End automatically added section


exit 0