#!/bin/sh

set -e 

. /usr/share/debconf/confmodule
db_version 2.0

if [ ! -f /etc/ltsp_chroot ]; then
    db_fset ltsp-client/abort-installation seen false	
    db_input high ltsp-client/abort-installation || true
    db_go || true
    exit 1
fi

#DEBHELPER#

exit 0
