File: php4-pgsql.config

package info (click to toggle)
php4-pgsql 3%3A4.3.10-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,776 kB
  • ctags: 349
  • sloc: sh: 8,442; ansic: 3,831; makefile: 70; awk: 70; php: 64
file content (32 lines) | stat: -rw-r--r-- 847 bytes parent folder | download
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
#/bin/sh -e

# Source debconf library.
. /usr/share/debconf/confmodule

db_title "PHP"

for SAPI in apache cgi apache2 cli
do
	# Skip this loop if the config file isn't there (yet).
	if [ -f "/etc/php4/$SAPI/php.ini" ]; then
		db_register php4/add_extension php4/extension_pgsql_$SAPI

		# FIXME: this is the wrong answer if the SAPI package was
		# installed after the module was.
		if [ -n "$2" ] && dpkg --compare-versions "$2" ge 4:4.3.2+rc3-2
		then
			if grep -q "^[[:space:]]*extension[[:space:]]*=[[:space:]]*pgsql\.so" "/etc/php4/$SAPI/php.ini"
			then
				db_set php4/extension_pgsql_$SAPI true
			else
				db_set php4/extension_pgsql_$SAPI false
			fi
		fi

		db_subst php4/extension_pgsql_$SAPI extname PostgreSQL
		db_subst php4/extension_pgsql_$SAPI sapiconfig $SAPI
		db_input low php4/extension_pgsql_$SAPI || true
	fi
done

db_go