This file is indexed.

postinst is in dhcpcd5 5.2.12-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
#!/bin/sh -e

update-alternatives --quiet --install /sbin/dhcpcd dhcpcd /sbin/dhcpcd5 50 \
	--slave /usr/share/man/man8/dhcpcd.8.gz dhcpcd.8.gz \
		/usr/share/man/man8/dhcpcd5.8.gz

# Automatically added by dh_installinit
if [ -x "/etc/init.d/dhcpcd" ]; then
	update-rc.d dhcpcd defaults >/dev/null || exit $?
fi
# End automatically added section