#!/bin/sh
if test -z "$KNOX"
then
	if test -f /etc/default/fsu
	then
		KNOX=`cat /etc/default/fsu`
	else
		KNOX=/usr/knox
	fi
fi
export KNOX
newknox=$KNOX
for i in /usr/bin/ARKPER_*[0-9]
do
	$i $*
done
KNOX=$newknox
export KNOX
exec $KNOX/bin/arkper $*
