#!/bin/ksh
#**********************************************************************#
#*                                                                    *#
#* Copyright (c) 2001 by Sun Microsystems, Inc.                       *#
#* All rights reserved.                                               *#
#*                                                                    *#
#**********************************************************************#
#
#
# this script is for use by the ebmdemo test jobs.
# the sleep allows each step to stay active so that
# the user can practice using different functions 
# of the GUI.
#
# parameters passed in must be a number value for the sleep
# if no parameter is passed in, the default sleep value is
# 10 seconds.
#
# for an example of usage, see the jobs under $EBMHOME/samples/ebmdemo.
#
if [ "a$PARM" = "a" ]
then
   PARM=10
fi
sleep $PARM
echo "0" >status.${JON}
