config is in dictd 1.12.0+dfsg-4build1.
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 29 30 31 32 33 | #!/bin/sh
# vim: ts=4:et:sts=4
# $Id: dictd.config 90 2009-01-03 16:57:14Z robert $
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
CONFIGFILE=/etc/default/dictd
if [ -f "$CONFIGFILE" ]; then
RUN_MODE="<not set in config file>"
. "$CONFIGFILE"
# preserve user changes from the config file
case "$RUN_MODE" in
daemon|inetd|disabled)
db_set dictd/run_mode "$RUN_MODE"
;;
"<not set in config file>")
;;
*)
db_set dictd/run_mode "daemon"
;;
esac
fi
db_input medium dictd/run_mode || true
db_go || true
|