This file is indexed.

postinst is in ipmitool 1.8.16-3.

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

set -e


ipmievd_initd_failed() {
	echo "Unable to start ipmievd during installation.  Trying to disable."
	if [ -f /etc/default/ipmievd ] && \
           grep -q ^ENABLED=\"false\" /etc/default/ipmievd ; then
	    :
	else
	    touch /etc/default/ipmievd
	    echo "ENABLED=\"false\"" >> /etc/default/ipmievd
	fi
}

# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	if [ -x "/etc/init.d/ipmievd" ]; then
		update-rc.d ipmievd defaults >/dev/null
	fi
	if [ -x "/etc/init.d/ipmievd" ] || [ -e "/etc/init/ipmievd.conf" ]; then
		invoke-rc.d ipmievd start || ipmievd_initd_failed
	fi
fi
# End automatically added section