#!/bin/sh 
# pdbv package configuration script

# Source debconf library -- we have a Depends line
# to make sure it is there...
. /usr/share/debconf/confmodule
db_version 2.0

if [ "$1" = configure -o "$1" = reconfigure ] ; then
    db_input low pdbv/listing || true
    db_input low pdbv/light || true
    db_input medium pdbv/output_dir || true
    db_input medium pdbv/clean_output_dir || true
    db_input low pdbv/cron || true
    db_input medium pdbv/cron_lang || true
    db_input low pdbv/sleep || true
    db_input low pdbv/force || true
    db_go
fi

exit 0