This file is indexed.

postinst is in php5-cgi 5.5.9+dfsg-1ubuntu4.

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/sh

set -e

dpkg-maintscript-helper mv_conffile /etc/apache2/mods-available/php5_cgi.conf \
    /etc/apache2/conf-available/php5-cgi.conf 5.5.0~beta4-1 -- "$@"

dpkg-maintscript-helper rm_conffile /etc/apache2/mods-available/php5_cgi.load 5.5.0~beta4-1 -- "$@"

VERSION=$2

php5_enable() {
    # Enable php5-cgi only if upgrading from older versions of php5-cgi
    if [ -n "$VERSION" ] && dpkg --compare-versions "$VERSION" lt 5.4.4-5; then
	return 0
    else
	return 1
    fi
}

if [ "$1" = "configure" ]; then
    update-alternatives \
	--install /usr/bin/php-cgi php-cgi /usr/bin/php5-cgi 50 \
	--slave /usr/share/man/man1/php-cgi.1.gz php-cgi.1.gz \
	/usr/share/man/man1/php5-cgi.1.gz

    update-alternatives \
	--install /usr/lib/cgi-bin/php php-cgi-bin /usr/lib/cgi-bin/php5 50
fi

CONFDIR=/etc/php5/cgi/conf.d

if [ -L $CONFDIR ]; then
    rm $CONFDIR
    mkdir $CONFDIR
fi

if [ "$1" = "configure" ]; then
    phpini="/etc/php5/cgi/php.ini"

    if [ "cgi" = "cli" ]; then
	ucf /usr/share/php5/php.ini-production.cgi $phpini
    else
	ucf /usr/share/php5/php.ini-production $phpini
    fi
    ucfr php5-cgi $phpini

    if [ -e /usr/share/php5/php5-maintscript-helper ]; then
	. /usr/share/php5/php5-maintscript-helper
	
	mods=$(php5query -M)
	for mod in $mods; do
	    php5_invoke enmod cgi $mod
	done
    fi

fi

# Automatically added by dh_apache2
if php5_enable; then
	if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
		. /usr/share/apache2/apache2-maintscript-helper
		for conf in php5-cgi  ; do
			apache2_invoke enconf $conf  || exit $?
		done
	fi
fi
# End automatically added section


exit 0