This file is indexed.

config is in mythtv-status 0.10.6-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
20
21
22
23
24
25
26
27
#!/bin/sh

PACKAGE=mythtv-status

CONFIGFILE=/etc/default/$PACKAGE
set -e
. /usr/share/debconf/confmodule

# Load config file, if it exists.
if [ -e $CONFIGFILE ]; then
  . $CONFIGFILE || true


  # Store values from config file into
  # debconf db.

  db_set $PACKAGE/enable $RUN
  db_set $PACKAGE/host $HOST
  db_set $PACKAGE/email $EMAIL

fi

# Ask questions.
db_input medium $PACKAGE/host || true
db_input medium $PACKAGE/enable || true
db_input medium $PACKAGE/email || true
db_go