#!/bin/sh
#
# runconfig - Shell Script which will launch the PxPlus WebServer
# Configuration Utility
#
# Copyright 2001 Best Software Canada Ltd.
# Ver 1.0 - GD 8/1/1999

CONFIGWEB=$0
WEBDIR=`dirname $CONFIGWEB`
if [ $WEBDIR = "." ]
then 
	WEBDIR=`pwd`
else 
	WEBDIR=$WEBDIR
fi

HASWINTERM=`infocmp winterm 2>/dev/null`
if [ ! $? = 0 ]
then 
	tic $WEBDIR/lib/_dev/winterm.tic
fi

TERM=winterm
PVXLIB=$WEBDIR/lib
export TERM PVXLIB

$WEBDIR/pxplus \*web/webcfg
