File: libphp-adodb.config

package info (click to toggle)
libphp-adodb 4.52-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 464 kB
  • ctags: 3
  • sloc: sh: 45; makefile: 12
file content (17 lines) | stat: -rw-r--r-- 318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

action=$1
version=$2

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

#
# print a warning, if we're upgrading from 1.x versions (/usr/lib ->/usr/share)
dpkg --compare-versions "$version" lt "2.00-1"
if [ $? -eq 0 ]; then
	db_input critical libphp-adodb/pathmove || true
	db_go || true
fi

exit 0