#!/bin/sh
#
# Turn on non-interactive mode after displaying the intro screen.

set -e

pkglibdir=/usr/lib/debian-edu-install

. $pkglibdir/debian-edu-common

init_debconf

#set -x

load_config

# Enable noninteractive frontend if it worked to set default answers
if test "$NONINTERACTIVE" = true ; then
    debconf-set-frontend Noninteractive
fi

exit 0
