forked from gitblit-org/gitblit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitblit-centos
50 lines (43 loc) · 1.04 KB
/
gitblit-centos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# chkconfig: 3 21 91
# description: Starts and Stops gitblit
# Source function library.
. /etc/init.d/functions
# change theses values (default values)
GITBLIT_PATH=/opt/gitblit
GITBLIT_HTTP_PORT=0
GITBLIT_HTTPS_PORT=8443
source ${GITBLIT_PATH}/java-proxy-config.sh
JAVA="java -server -Xmx1024M ${JAVA_PROXY_CONFIG} -Djava.awt.headless=true -jar"
RETVAL=0
case "$1" in
start)
if [ -f $GITBLIT_PATH/gitblit.jar ];
then
echo $"Starting gitblit server"
cd $GITBLIT_PATH
$JAVA $GITBLIT_PATH/gitblit.jar --httpsPort $GITBLIT_HTTPS_PORT --httpPort $GITBLIT_HTTP_PORT > /dev/null &
echo "."
exit $RETVAL
fi
;;
stop)
if [ -f $GITBLIT_PATH/gitblit.jar ];
then
echo $"Stopping gitblit server"
cd $GITBLIT_PATH
$JAVA $GITBLIT_PATH/gitblit.jar --stop > /dev/null &
echo "."
exit $RETVAL
fi
;;
force-reload|restart)
$0 stop
$0 start
;;
*)
echo $"Usage: /etc/init.d/gitblit {start|stop|restart|force-reload}"
exit 1
;;
esac
exit $RETVAL