#!/bin/sh

# bug 128254, 128559
# check that quake2-data/storage contains a value

. defaults

TEST=`grep -2 quake2-data/storage $DEBIAN/templates | grep '^Default:' | cut -f2 -d':'`

if [ -z "$TEST" ]; then
	echo No default for quake2-data/storage
	echo $0 FAILED
	exit 1
fi

# FIXME: check values for config and postinst too
