config is in mason 1.0.0-12.3.
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 | #!/bin/sh
set -e
CONFIGFILE=/etc/masonrc
. /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 mason/newrulepolicy "$NEWRULEPOLICY"
db_set mason/defaultpolicy "$DEFAULTPOLICY"
fi
db_input medium mason/newrulepolicy || true
db_input medium mason/defaultpolicy || true
db_go || true
|