mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
4f143d1ef1
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
21 lines
319 B
Bash
21 lines
319 B
Bash
#!/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
|