#!/bin/sh -e

# Source debconf library.
. /usr/share/debconf/confmodule

# We'll only want to see an upgrade notice
# if we're upgrading from an old version.
if [ "$1" = "configure" -a "$2" != "" ]; then
	if dpkg --compare-versions "$2" lt 0.8; then
		db_input medium dput/config-file-format || true
		db_go
	fi
fi
