#	
#   Copyright (C) 1992, The Santa Cruz Operation, Inc.
#   All Rights Reserved.
# 
#   The copyright above and this notice must be preserved in all
#   copies of this source code.  The copyright above does not
#   evidence any actual or intended publication of this source
#   code.
# 
#   This is unpublished proprietary trade secret source code of
#   The Santa Cruz Operation, Inc..  This source code may not be
#   copied, disclosed, distributed, demonstrated or licensed except
#   as expressly authorized by The Santa Cruz Operation, Inc..
#
#   SCCSID: @(#) ipx.sh 3.2 92/05/04  (SCO)
#

#
# IPX/SPX start/stop script
# Usage: ipx [ start | stop | restart ]
#


case "$1" in

start)
	/etc/startnps -v
	;;

stop) 
	/etc/stopnps -v
	;;

restart)
	/etc/stopnps -v
	/etc/startnps -v
	;;
*)
	echo "Usage: $0 [ start | stop | restart ]"
	exit 1
	;;

esac

exit 0
