#! /bin/sh
#
# Startup wrapper for the MaxDB-webserver. (c) 2004 Martin Kittel.
#
# Sets the shared library path and calls the webserver in its
# directory so it will find its ini-file.


MAXDBPATH=/usr/lib/maxdb
export LD_LIBRARY_PATH=$MAXDBPATH/programs/lib:$LD_LIBRARY_PATH

cd $MAXDBPATH/programs/pgm
exec ./wahttp
