#! /bin/sh
######################################################################
#
#  Shell script: dm3stopboard
#
#
#      Copyright 1990-2008 Dialogic Corp. All Rights Reserved
######################################################################
USAGE="Usage: `basename $0` <AUID> "


# Check args
if [ $# -eq 0 ]
then
    echo "No options specified"
    echo $USAGE
    exit 1
fi

while getopts "h" Option
do
    case $Option in
       *     ) 
               echo $USAGE;
               exit 1;; 
     esac
done 


# Call new script
$DLGCROOT/bin/stopbrd -a $1
exit $?
