#!/bin/sh
#
# tnc wrapper script
#
# $TenDRA: tendra/src/wrappers/common.sh,v 1.2 2003/08/25 06:34:47 nonce Exp $
#
# TenDRA settings
TENDRA_BASEDIR="/usr/local/lib/TenDRA"
TENDRA_VERSION="5.0.0"
# binary settings
BIN_RUN="${TENDRA_BASEDIR}/bin/tnc"
OPTS_DEFAULT=""
# Execute tnc with our compiled options.
if [ -n "$DEBUG" ]; then
/bin/echo ${BIN_RUN} ${OPTS_DEFAULT} ${@+"$@"}
else
${BIN_RUN} ${OPTS_DEFAULT} ${@+"$@"}
fi;