diff options
author | Silvino Silva <silvino@bk.ru> | 2020-02-17 06:43:09 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2020-02-17 16:39:18 +0000 |
commit | d9ddaa49950198fbdae3e18e95506b4451eb9fbc (patch) | |
tree | 93020b7598c3d8a2b689921132b8fadeaeddab37 /core/conf/rc.d/git-daemon | |
parent | 957436d2e08d43e9cb8cb2a6904ff6a8b81d917a (diff) | |
download | doc-d9ddaa49950198fbdae3e18e95506b4451eb9fbc.tar.gz |
several configuration fix's
Diffstat (limited to 'core/conf/rc.d/git-daemon')
-rwxr-xr-x | core/conf/rc.d/git-daemon | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/core/conf/rc.d/git-daemon b/core/conf/rc.d/git-daemon new file mode 100755 index 0000000..41793eb --- /dev/null +++ b/core/conf/rc.d/git-daemon @@ -0,0 +1,43 @@ +#!/bin/sh + +SSD=/sbin/start-stop-daemon +NAME=git-daemon +PROG=$(git --exec-path)/${NAME} +USER=gitolite +GROUP=gitolite +PIDFILE=/var/run/git-daemon.pid +REPOS=/srv/gitolite/repositories +OPTS="--verbose --reuseaddr --base-path=${REPOS}" + +case $1 in + start) + echo "Starting ${NAME}..." + $SSD --start \ + --pidfile ${PIDFILE} \ + --exec ${PROG} -- ${OPTS} \ + --detach --pid-file=${PIDFILE} \ + --user=${USER} --group=${GROUP} + + ;; + stop) + echo "Stopping ${NAME}..." + $SSD --stop --quiet --name git-daemon \ + --pidfile ${PIDFILE} + ;; + restart) + echo "Restarting ${NAME}..." + $0 stop + $0 start + ;; + status) + $SSD --status --pidfile $PIDFILE + case $? in + 0) echo "$PROG is running with pid $(cat $PIDFILE )" ;; + 3) echo "$PROG is not running" ;; + 4) echo "Unable to determine the program status" ;; + esac + ;; + *) + echo "usage: $0 [start|stop|restart|status]" + ;; +esac |