This file is indexed.

config is in macchanger 1.7.0-5.3build1.

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

set -e

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


if [ -f /etc/default/macchanger ]; then
    ENABLE_ON_POST_UP_DOWN=false
    . /etc/default/macchanger

    if [ "$ENABLE_ON_POST_UP_DOWN" = "true" ]; then
        db_set macchanger/automatically_run true
    else
        db_set macchanger/automatically_run false
    fi
fi

db_input high macchanger/automatically_run || true
db_go



exit 0