From: James Moger Date: Tue, 20 Mar 2012 23:51:43 +0000 (-0400) Subject: Added Ubuntu service init script (issue 72) X-Git-Tag: v0.9.0~33 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3da5a58bf8f533cba7d65f4da19f1cd350b0f118;p=gitblit.git Added Ubuntu service init script (issue 72) --- diff --git a/distrib/gitblit-ubuntu b/distrib/gitblit-ubuntu new file mode 100644 index 00000000..957a8d05 --- /dev/null +++ b/distrib/gitblit-ubuntu @@ -0,0 +1,46 @@ +#!/bin/bash +# chkconfig: 3 21 91 +# Source function library. +. /lib/init/vars.sh +. /lib/lsb/init-functions + +PATH=/sbin:/bin:/usr/bin:/usr/sbin + +# change theses values (default values) +GITBLIT_PATH=/opt/gitblit +GITBLIT_USER="gitblit" +ARGS="-server -Xmx1024M -jar gitblit.jar" + +RETVAL=0 + +case "$1" in + start) + if [ -f $GITBLIT_PATH/gitblit.jar ]; + then + echo $"Starting gitblit server" + start-stop-daemon --start --quiet --background --oknodo --make-pidfile --pidfile /var/run/gitblit.pid --exec /usr/bin/java --chuid $GITBLIT_USER --chdir $GITBLIT_PATH -- $ARGS + exit $RETVAL + fi + ;; + + stop) + if [ -f $GITBLIT_PATH/gitblit.jar ]; + then + echo $"Stopping gitblit server" + start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/gitblit.pid + 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 \ No newline at end of file diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index 5b54aaad..126ee239 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -31,6 +31,7 @@ Push requests to these repositories will be rejected. **New:** *git.onlyAccessBareRepositories = false* - Added *protect-refs.groovy* (Github/plm) - Allow setting default branch (relinking HEAD) to a branch or a tag (Github/plm) +- Added Ubuntu service init script (issue 72) #### fixes