James Moger
2012-02-02 a71c5a27e3768cb68b979eac6ec8c7d7612dec8f
Adjustments to init scripts
2 files modified
10 ■■■■ changed files
distrib/gitblit 8 ●●●●● patch | view | raw | blame | history
distrib/gitblit-centos 2 ●●●●● 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