config is in fookebox 0.7.2-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 | #!/bin/sh
set -e
# Source debconf library
. /usr/share/debconf/confmodule
[ ! -f /var/lib/fookebox/fookebox.sqlite ] && exit 0
db_input high fookebox/remove_database || true
db_go
# Check the answer
db_get fookebox/remove_database
if [ "$RET" = "true" ] ; then
rm -f /var/lib/fookebox/fookebox.sqlite
rmdir /var/lib/fookebox/
fi
|