Displaying 1 result from an estimated 1 matches for "jesarg".
Did you mean:
wesarg
2005 Oct 24
1
starting a java application as a service
...s for the Javelin HP3000 NS/VT
# emulator java applette.
#
# Check if config file readable (and therefore exists).
[ -r /etc/sysconfig/jes ] || exit 0
# Read and execute the config file.
. /etc/sysconfig/jes
# Check if variable has length zero and exit if true.
[ -z "$JESARGS" ] && exit 0
start()
{
echo -n $"Starting jes as daemon: "
/usr/bin/java -cp /usr/local/lib/java/jes.jar Jes $JESARGS
touch /var/lock/subsys/jes
echo
}
stop()
{
echo -n $"Shutting down jes (Java Encryption Service): "...