File: libphp-adodb.config

package info (click to toggle)
libphp-adodb 5.20.9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,488 kB
  • ctags: 10,365
  • sloc: php: 37,447; python: 601; xml: 117; sql: 32; sh: 22; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (2)
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-nl "4.64-1" ; then
	db_input critical libphp-adodb/pathmove || true
	db_go || true
fi

exit 0