#!/bin/sh -e
. /usr/share/debconf/confmodule

# Asks the user if they want to try again to install packages that failed to
# install. If so, returns true.
db_fset base-config/install-problem isdefault true
db_input critical base-config/install-problem || true
db_go || true
db_get base-config/install-problem
if [ "$RET" = true ]; then
	exit 0
else
	exit 1
fi	
