This file is indexed.

/usr/share/doc/dbconfig-common/examples/buildpackages.sh is in dbconfig-common 2.0.8.

This file is owned by root:root, with mode 0o755.

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

packages="db-test-mysql-2.0 db-test-mysql-2.1 db-test-mysql-frontend-2.0 \
          db-test-mysql-perl-2.0 db-test-pgsql-2.0 db-test-pgsql-2.1 \
          db-test-pgsql-migration-1.9 db-test-pgsql-migration-2.0 \
          db-test-multidbtype-2.0 db-test-sqlite-2.0
          db-test-sqlite3-2.0 "

echo -n "building packages:"
for f in $packages; do
	echo -n " ($f)"	
	( 
		cd $f; 
		fakeroot debian/rules binary >/dev/null;
		fakeroot debian/rules clean >/dev/null;
	) 
done
echo " done.  have fun :)"