slackbuilds_ponce/network/glassfish/rc.glassfish

22 lines
319 B
Text
Raw Normal View History

#!/bin/sh
# This is an example rc script.
# Modify it to suit your need.
start()
{
/bin/su -l glassfish -c /usr/bin/asadmin start-domain
}
stop()
{
/bin/su -l glassfish -c /usr/bin/asadmin stop-domain
}
case "$1" in
"start")start;;
"stop")stop;;
"restart")stop; start;;
*) echo "$0 start|stop|restart"
esac