This file is indexed.

postinst is in fetch-crl 3.0.11-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
12
13
14
15
16
17
18
#!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -x "/etc/init.d/fetch-crl-boot" ] || [ -e "/etc/init/fetch-crl-boot.conf" ]; then
	if [ ! -e "/etc/init/fetch-crl-boot.conf" ]; then
		update-rc.d fetch-crl-boot stop 20 0 1 2 3 4 5 6 . >/dev/null
	fi
	invoke-rc.d fetch-crl-boot start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/fetch-crl-cron" ] || [ -e "/etc/init/fetch-crl-cron.conf" ]; then
	if [ ! -e "/etc/init/fetch-crl-cron.conf" ]; then
		update-rc.d fetch-crl-cron defaults >/dev/null
	fi
	invoke-rc.d fetch-crl-cron start || exit $?
fi
# End automatically added section