File: libphp-adodb.config

package info (click to toggle)
libphp-adodb 5.15-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 3,440 kB
  • ctags: 10,457
  • sloc: php: 34,120; xml: 117; makefile: 34; sql: 32; sh: 22
file content (19 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e
#set -x

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)
if dpkg --compare-versions "$version" lt "4.64-1" ; then
	db_input critical libphp-adodb/pathmove || true
	db_go || true
fi

exit 0