config is in dibbler-server 1.0.0~rc1-1.
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 | #!/bin/bash -e
# if we do not have debconf, we just skip this
. /usr/share/debconf/confmodule || exit 0
db_version 2.0
#db_capb backup
db_settitle dibbler-server/title
# Step 1: Do you want dibbler-client to be started?
db_input critical dibbler-server/start || true
db_go
db_input critical dibbler-server/config || true
db_go
db_stop
|