distrib/gitblit | ●●●●● patch | view | raw | blame | history | |
distrib/gitblit-centos | ●●●●● patch | view | raw | blame | history |
distrib/gitblit
@@ -2,7 +2,7 @@ set -e GITBLIT_PATH=/opt/gitblit/ GITBLIT_PATH=/opt/gitblit GITBLIT_HTTP_PORT=0 GITBLIT_HTTPS_PORT=8443 JAVA="java -server -Xmx1024M -jar" @@ -12,12 +12,14 @@ case "$1" in start) log_action_begin_msg "Starting gitblit server" $JAVA $GITBLIT_PATH/gitblit.jar --httpsPort $GITBLIT_HTTPS_PORT --httpPort $GITBLIT_HTTP_PORT & cd $GITBLIT_PATH $JAVA $GITBLIT_PATH/gitblit.jar --httpsPort $GITBLIT_HTTPS_PORT --httpPort $GITBLIT_HTTP_PORT > /dev/null & log_action_end_msg $? ;; stop) log_action_begin_msg "Stopping gitblit server" $JAVA $GITBLIT_PATH/gitblit.jar --stop & cd $GITBLIT_PATH $JAVA $GITBLIT_PATH/gitblit.jar --stop > /dev/null & log_action_end_msg $? ;; force-reload|restart) distrib/gitblit-centos
@@ -16,6 +16,7 @@ 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 @@ -26,6 +27,7 @@ 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