File: start-sample-server.sh

package info (click to toggle)
libquartz-java 1%3A1.8.6-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,444 kB
  • sloc: java: 28,881; xml: 1,267; sh: 225; makefile: 2
file content (16 lines) | stat: -rwxr-xr-x 383 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
# All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
#
workdir=`dirname $0`
workdir=`cd ${workdir} && pwd`

# Set the path to your Terracotta server home here
TC_HOME=${workdir}/../../..

if [ ! -f $TC_HOME/bin/start-tc-server.sh ]; then
  echo "Modify the script to set TC_HOME" 
  exit -1
fi

exec $TC_HOME/bin/start-tc-server.sh&