File: instance1.sh

package info (click to toggle)
libquartz-java 1.6.6-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,032 kB
  • ctags: 4,138
  • sloc: java: 26,921; xml: 865; sh: 108; makefile: 17
file content (27 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

# Change this to your JDK installation root
#
#JAVA_HOME=/usr/java/j2sdk1.4.0_01

JRE=$JAVA_HOME/jre
JAVA=$JRE/bin/java

. ${QUARTZ}/examples/bin/buildcp.sh

#
# Set the path to your JDCB Driver jar file here
JDBC_CP=/home/user/lib/postgres.jar

QUARTZ_CP=$QUARTZ_CP:$JDBC_CP

# Uncomment the following line if you would like to set log4j 
# logging properties
#
#LOGGING_PROPS="-Dlog4j.configuration=log4j.properties"

# Set the name and location of the quartz.properties file
QUARTZ_PROPS="-Dorg.quartz.properties=instance1.properties"

$JAVA -classpath $QUARTZ_CP $QUARTZ_PROPS $LOGGING_PROPS org.quartz.examples.example13.ClusterExample $1