#!/bin/sh

# bug 131315, 131370
# inclusion of -x in postinst

. defaults

TEST=`find $DEBIAN -type f -perm +111 -print0 |xargs -0 grep '^set.*-x'`

if [ "$TEST" ]; then
	echo $TEST
	echo $0 FAILED
	exit 1
else
	exit 0
fi
