config is in freevo 1.9.2b2-4.2.
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 34 35 36 37 38 | #!/bin/sh -e
. /usr/share/debconf/confmodule
db_version 2.0
db_capb backup
state=1
while [ "$state" -ge 1 -a "$state" -le 6 ]; do
case "$state" in
1) db_input high freevo/display || true
db_input high freevo/geometry || true
db_input high freevo/norm || true
db_input high freevo/chanlist || true
;;
2) db_input high freevo/services || true
;;
3) db_input low freevo/title_video || true
db_input low freevo/path_to_video || true
;;
4) db_input low freevo/title_audio || true
db_input low freevo/path_to_audio || true
;;
5) db_input low freevo/title_image || true
db_input low freevo/path_to_image || true
;;
6) db_input low freevo/path_to_recordings || true
;;
esac
if db_go; then
state=$(($state + 1))
else
state=$(($state - 1))
fi
done
db_stop
exit 0
|