#!/bin/sh

JAVA=/usr/local/jdk-1.7.0/jre/bin/java
LAUNCHER_BOOTCLASSPATH="-Xbootclasspath/a:/usr/local/share/icedtea-web/netx.jar"
LAUNCHER_FLAGS=-Xms8m
CLASSNAME=net.sourceforge.jnlp.controlpanel.CommandLine
BINARY_LOCATION=/usr/local/bin/itweb-settings
PROGRAM_NAME=itweb-settings

${JAVA} ${LAUNCHER_BOOTCLASSPATH} ${LAUNCHER_FLAGS} \
  -Dicedtea-web.bin.name=${PROGRAM_NAME} \
  -Dicedtea-web.bin.location=${BINARY_LOCATION} \
  ${CLASSNAME} \
  $@

