config is in fprobe 1.1-7.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
#Script to configure fprobe.
# Use debconf.
. /usr/share/debconf/confmodule
# Load config file, if it exists.
if [ -e /etc/default/fprobe ]; then
. /etc/default/fprobe || true
# Store values from config file into debconf db.
db_set fprobe/interface "$INTERFACE"
db_set fprobe/collector "$FLOW_COLLECTOR"
fi
db_input high fprobe/interface || true
db_input high fprobe/collector || true
db_go
|