]> source.dussan.org Git - gitblit.git/commitdiff
Service installation under CentOS 4/head
authorRomain Lespinasse <romain.lespinasse@gmail.com>
Thu, 12 Jan 2012 19:48:26 +0000 (20:48 +0100)
committerRomain Lespinasse <romain.lespinasse@gmail.com>
Thu, 12 Jan 2012 19:48:26 +0000 (20:48 +0100)
distrib/gitblit-centos [new file with mode: 0644]
distrib/install-service-centos.sh [new file with mode: 0644]

diff --git a/distrib/gitblit-centos b/distrib/gitblit-centos
new file mode 100644 (file)
index 0000000..db2fdef
--- /dev/null
@@ -0,0 +1,46 @@
+#!/bin/bash
+# chkconfig: 3 21 91
+# Source function library.
+. /etc/init.d/functions
+
+# change theses values (default values)
+GITBLIT_PATH=/opt/gitblit
+GITBLIT_HTTP_PORT=0
+GITBLIT_HTTPS_PORT=8443
+JAVA="java -server -Xmx1024M -jar"
+
+RETVAL=0
+
+case "$1" in
+  start)
+    if [ -f $GITBLIT_PATH/gitblit.jar ];
+      then
+      echo $"Starting gitblit server"
+      $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 $"Starting gitblit server"
+      $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
diff --git a/distrib/install-service-centos.sh b/distrib/install-service-centos.sh
new file mode 100644 (file)
index 0000000..5e2e592
--- /dev/null
@@ -0,0 +1,3 @@
+cp gitblit-centos /etc/init.d/gitblit
+chmod +x /etc/init.d/gitblit
+sudo chkconfig --add gitblit