This file is indexed.

config is in gridengine-common 8.1.9+dfsg-7build1.

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

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

CONFFILE=/etc/default/gridengine

# Read the information in from the /etc/default/gridengine
# file if possible
if [ -e ${CONFFILE} ]; then
    . ${CONFFILE} || true
fi

db_input high shared/gridengineconfig || true

db_go || true

db_get shared/gridengineconfig || true

if [ "${RET}" = "true" ]; then
    if [ -n "${SGE_CELL}" ] && [ -n "${2}" ]; then
        db_set shared/gridenginecell ${SGE_CELL}
    else
        db_input high shared/gridenginecell || true
    fi

    db_go || true
fi