This file is indexed.

config is in printer-driver-pnm2ppa 1.13+nondbs-0ubuntu6.

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
25
26
27
#!/bin/sh
#
# Config script for pnm2ppa
#
# Only ask the questions here.  Make the changes to the filesystem in the
# postinst script.
#
set -e

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

# Let debconf manage the file?
db_input medium pnm2ppa/use_debconf || true
db_go

# Get the value
db_get pnm2ppa/use_debconf
if [ "$RET" = "true" ] ; then
	# Ask which printer
	db_input medium pnm2ppa/printer_model || true
	db_go

	# Create magicfilter for printer model?
	db_input low pnm2ppa/create_magicfilter || true
	db_go
fi