This file is indexed.

/usr/share/doc/debconf-doc/examples/tutorial is in debconf-doc 1.5.49.

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

# Source debconf library.
. /usr/share/debconf/confmodule

# Do you like debian?
db_input medium foo/like_debian || true
db_go

# Check their answer.
db_get foo/like_debian
if [ "$RET" = "false" ]; then
	# Poor misguided one..
	db_input high foo/why_debian_is_great || true
	db_go
fi