# OSGi runner config options # # $Id$ # set to yes if you want automatic starting OSGI_START="yes" # JAVA_HOME: The java runtime to use JAVA_HOME=/usr/lib/jvm/java-7-openjdk # protect against debian wheezy's directory cleanup test -x $JAVA_HOME/bin/java || JAVA_HOME=$(readlink -f $(which java) |sed -e 's/\/jre//' |sed -e 's/\/bin\/java//') # OSGI_OPTS: Additional java options for starting osgi-runner. OSGI_OPTS="-Dfile.encoding=utf-8 -Djava.awt.headless=true -Xms256m -Xmx1024m" # # uncomment this line, if you want to connect to osgi-runner using the java remote debugger. # #OSGI_OPTS="${OSGI_OPTS} -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" # runtime user and group OSGI_USER=osgi OSGI_GROUP=osgi # chown directories besides the usual CHOWN_DIRS=""