#!/bin/sh
#added by installer
Installpath=/data/Exceed_Connection_Server_13.7

# ####################################################################
# Exceed Connection Server 13.7
# Copyright (c) 1997-2009 Open Text Corporation. All Rights Reserved.
# ####################################################################
# ecsbootstart
# $Revision: 14444 $
# ###############################################################

# Install script to run server at startup

cd "${Installpath}/bin"

. ./sys/msg.txt

if [ ${OSTYPE:="UNKNOWN"} = "Linux" \
	-o $OSTYPE = "linux-gnu" \
	-o $OSTYPE = "linux" \
	]; then
	ECHO="echo -e"
else
	ECHO="echo"
fi
export ECHO

if [ -x "sys/boottime" ] ; then
	${ECHO}
	${ECHO} ${BOOTSTART_BANNER}
	${ECHO}
	sh "sys/boottime" "${Installpath}" noprefix
	${ECHO}
fi

exit 0
