config is in fwanalog 0.6.9-7.
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
set -e
. /usr/share/debconf/confmodule
STATE=1
while true; do
case "$STATE" in
1)
db_input medium fwanalog/language || true
db_input medium fwanalog/cron || true
;;
2)
db_get fwanalog/cron
if [ "$RET" = "true" ]; then
db_input medium fwanalog/mailto || true
fi
;;
*)
break
;;
esac
if db_go; then
STATE=$(($STATE + 1 ))
else
STATE=$(($STATE - 1 ))
fi
done
if [ "$STATE" -eq 1 ]; then
exit 10
fi
|