This file is indexed.

config is in dbconfig-common 1.8.47.

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
20
21
22
23
24
#!/bin/sh

set -e

. /usr/share/debconf/confmodule

if [ -f /etc/dbconfig-common/config ]; then
	. /etc/dbconfig-common/config
	if [ "$dbc_remember_admin_pass" = "true" ]; then
		db_set dbconfig-common/remember-admin-pass "true"
	else
		db_set dbconfig-common/remember-admin-pass "false"
	fi
	if [ "$dbc_remote_questions_default" = "true" ]; then
		db_set dbconfig-common/remote-questions-default "true"
	else
		db_set dbconfig-common/remote-questions-default "false"
	fi
fi

db_input low dbconfig-common/remember-admin-pass || true
db_input low dbconfig-common/remote-questions-default || true

db_go