This file is indexed.

postinst is in printconf 0.7.9.5build1.

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

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

db_get printconf/setup_printers
if [ $RET = true ]; then
    # Only run printconf once between purges
    db_get printconf/printconf_run
    if [ $RET = false ]; then
        printconf && db_set printconf/printconf_run true
    fi
fi

db_stop



### Local Variables:
### tab-width: 4
### End: