This file is indexed.

prerm is in nut-client 2.7.2-4ubuntu1.

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
#!/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
dpkg-maintscript-helper rm_conffile /etc/bash_completion.d/nut 2.7.1-1~ -- "$@"
# End automatically added section
# Automatically added by dh_installinit
if ([ -x "/etc/init.d/nut-client" ] || [ -e "/etc/init/nut-client.conf" ]) && \
   [ "$1" = remove ]; then
	invoke-rc.d nut-client stop || handle_start_failure
fi
# End automatically added section


exit 0