config is in sugarplum 0.9.10-17.2.
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 | #!/bin/sh
# get configuration option on a fresh install
set -e
. /usr/share/debconf/confmodule
# only ask this for fresh installs or during reconfiguration
case "$1" in
configure|reconfigure)
db_input medium sugarplum/configure_httpd || true
db_go
;;
*)
;;
esac
|