#!/bin/sh
#
# @(#)pt7606e/xs_solaris/FTutils/pri/pri.sh	1.1 97/05/21
#
#	Pri shell to invoke the actual pri binary.
#	Useful for provided additional control not built into cms

#	ULTRA_STEALTH must be set to "yes" if ultra-stealthy pri behaviour is
#	to be used.  
#
#	Note: using ultra-stealth from this script will override the behaviour
#	of other pri options which are configurable from sysconfig.
#
ULTRA_STEALTH=yes

#	Location of the actual pri program
#
REAL_PRI=/etc/cms/bin/RealPri

if [ "$ULTRA_STEALTH" = yes ]
then
	/etc/cms/bin/RealPri -u $*
else
	/etc/cms/bin/RealPri $*
fi

