This file is indexed.

config is in libphp-adodb 5.20.9-1.

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
#!/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