updated on Sat Jan 14 16:01:55 UTC 2012
[aur-mirror.git] / jboss / jboss
blob1d2ea0f8f7df83302af779a45790a60e2b23fc81
1 #!/bin/bash
3 # general config
4 . /etc/rc.conf
5 . /etc/rc.d/functions
7 case "$1" in
8 start)
9 stat_busy "Starting JBoss Application Server"
10 /opt/jboss/bin/run.sh >/dev/null 2>&1 &
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon jboss
15 stat_done
18 stop)
19 stat_busy "Stopping JBoss Application Server"
20 /opt/jboss/bin/shutdown.sh -S &>/dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon jboss
25 stat_done
28 restart)
29 $0 stop
30 sleep 10
31 $0 start
34 echo "usage: $0 {start|stop|restart}"
35 esac