summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-www/resin-ee/files/2.1.9/resin.conf')
-rw-r--r--net-www/resin-ee/files/2.1.9/resin.conf36
1 files changed, 36 insertions, 0 deletions
diff --git a/net-www/resin-ee/files/2.1.9/resin.conf b/net-www/resin-ee/files/2.1.9/resin.conf
new file mode 100644
index 000000000000..9edc04875e7a
--- /dev/null
+++ b/net-www/resin-ee/files/2.1.9/resin.conf
@@ -0,0 +1,36 @@
+# $Header: /var/cvsroot/gentoo-x86/net-www/resin-ee/files/2.1.9/resin.conf,v 1.1 2003/04/30 13:56:44 absinthe Exp $
+
+# JVM Runtime
+# Using the default setting, it will determine your JVM from the system-vm
+# set using java-config.
+# See java-config(1) manual page for assistance in determining this value.
+#
+# You can override this value with whatever path you wish.
+# Example: JAVA_HOME=/opt/sun-jdk-1.4.1.01
+
+JAVA_HOME=`/bin/grep -e "JAVA_HOME" /etc/profile.env | /bin/sed -e "s/^.*'\(.*\)'$/\1/"`
+
+# (Optional) Java runtime options used when the "start", "stop", or "run"
+# commands are executed.
+# JAVA_OPTS=""
+
+# Where your Resin is installed
+RESIN_HOME=/opt/resin
+SERVER_ROOT=${RESIN_HOME}
+
+# Resin's User
+RESIN_USER=resin
+
+# Resin Log Locations
+RESIN_OUT=/var/log/resin/resin_out.log
+RESIN_ERR=/var/log/resin/resin_err.log
+
+# Location of the Resin JARs and classes
+RESIN_LIBDIR=/usr/share/resin-ee/lib
+
+# The CLASSPATH for Resin to use, plus any others you need.
+CLASSPATH=`/bin/grep -e "CLASSPATH" /usr/share/resin-ee/package.env | /bin/sed -e "s/CLASSPATH=//"`:${RESIN_LIBDIR}/lib
+
+# START/STOP settings
+RESIN_START="-java_home ${JAVA_HOME} -resin_home ${RESIN_HOME} -stdout ${RESIN_OUT} -stderr ${RESIN_ERR} start"
+RESIN_STOP="stop"