config is in dibbler-client 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 18 19 20 21 22 23 24 25 | #!/bin/bash -e
PATH=$PATH:.
# 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-client/title
# Step 1: Do you want dibbler-client to be started?
db_input critical dibbler-client/start || true
db_go
# Step 2: What interfaces should be configured?
db_input high dibbler-client/interfaces || true
db_go
# Step 3: What addtional options you you want to get?
db_input high dibbler-client/options || true
db_go
db_stop
|