#!/bin/sh
set -e

. /usr/share/debconf/confmodule

db_settitle debian-installer/astra-license/title

db_input critical astra-license/license || true
db_go

db_get astra-license/license || true
if [ $RET != true ]; then
	/lib/debian-installer/exit
fi
exit 0
