This file is indexed.

postinst is in fetch-crl 3.0.17-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
19
20
21
22
#!/bin/sh
set -e
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	if [ -x "/etc/init.d/fetch-crl-boot" ]; then
		update-rc.d fetch-crl-boot stop 20 0 1 2 3 4 5 6 . >/dev/null
	fi
	if [ -x "/etc/init.d/fetch-crl-boot" ] || [ -e "/etc/init/fetch-crl-boot.conf" ]; then
		invoke-rc.d fetch-crl-boot start || exit $?
	fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	if [ -x "/etc/init.d/fetch-crl-cron" ]; then
		update-rc.d fetch-crl-cron defaults >/dev/null
	fi
	if [ -x "/etc/init.d/fetch-crl-cron" ] || [ -e "/etc/init/fetch-crl-cron.conf" ]; then
		invoke-rc.d fetch-crl-cron start || exit $?
	fi
fi
# End automatically added section