about summary refs log blame commit diff stats
path: root/tools/conf/etc/rc.d/git-daemon
blob: fc43cbfca93f5c436d266b4d922a5e94ccbe4584 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                               
              
                               

                                                 
































                                                               
#!/bin/sh

SSD=/sbin/start-stop-daemon
NAME=git-daemon
PROG=$(git --exec-path)/${NAME}
USER=www
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