This file is indexed.

config is in golang-go 2:1-5.

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

set -e

conffile=/etc/golang/goinstall.conf

. /usr/share/debconf/confmodule

if [ -f $conffile ] ; then
    if grep -q DASHBOARD $conffile; then
        :;
    fi
    . $conffile
    if [ "$DASHBOARD" = "yes" ] ; then
        DASHBOARD=true
    else
        DASHBOARD=false
    fi
    db_set golang-go/dashboard "$DASHBOARD"
fi

db_input high golang-go/dashboard || [ $? -eq 30 ]
db_go || true