#!/bin/sh
#$Id: config,v 1.4 2001/07/11 23:12:55 agx Exp $

set -e

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

# show no_block message only upon first installation
if [ "$1" = "configure"  -a -z "$2"  ]; then
	    db_input high portsentry/warn_no_block || true
	    db_go
fi
