diff options
author | Britney Fransen <brfransen@gmail.com> | 2015-09-21 20:37:19 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2015-09-21 20:37:19 (GMT) |
commit | 59386a777a8fc6edcb252ac24f74d1e680647db5 (patch) | |
tree | d7651fb1535bd8def3cf9ee1b80dfb56a8771dfe /abs/extra/git/git-daemon | |
parent | b927a8f31804f4bc280dbd254392ba2c5a5b6327 (diff) | |
download | linhes_pkgbuild-59386a777a8fc6edcb252ac24f74d1e680647db5.zip linhes_pkgbuild-59386a777a8fc6edcb252ac24f74d1e680647db5.tar.gz linhes_pkgbuild-59386a777a8fc6edcb252ac24f74d1e680647db5.tar.bz2 |
git: update to 2.5.3
Diffstat (limited to 'abs/extra/git/git-daemon')
-rw-r--r-- | abs/extra/git/git-daemon | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/abs/extra/git/git-daemon b/abs/extra/git/git-daemon deleted file mode 100644 index 21ba73e..0000000 --- a/abs/extra/git/git-daemon +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -daemon_bin="/usr/lib/git-core/git-daemon" -daemon_name=$(basename $daemon_bin) -PIDF="/var/run/$daemon_name.pid" - -. /etc/rc.conf -. /etc/rc.d/functions -. /etc/conf.d/$daemon_name.conf - -get_pid() { - pidof -o %PPID $daemon_name -} - -case "$1" in - start) - stat_busy "Starting $daemon_name daemon" - - PID=$(get_pid) - if [ -z "$PID" ]; then - [ -f $PIDF ] && rm -f $PIDF - # RUN - $daemon_bin --pid-file=$PIDF $GIT_DAEMON_ARGS - # - if [ $? -gt 0 ]; then - stat_fail - exit 1 - else - echo $(get_pid) > $PIDF - add_daemon $daemon_name - stat_done - fi - else - stat_fail - exit 1 - fi - ;; - - stop) - stat_busy "Stopping $daemon_name daemon" - PID=$(get_pid) - # KILL - [ ! -z "$PID" ] && kill $PID &> /dev/null - # - if [ $? -gt 0 ]; then - stat_fail - exit 1 - else - rm -f $PIDF &> /dev/null - rm_daemon $daemon_name - stat_done - fi - ;; - - restart) - $0 stop - sleep 3 - $0 start - ;; - - status) - stat_busy "Checking $daemon_name status"; - ck_status $daemon_name - ;; - - *) - echo "usage: $0 {start|stop|restart|status}" -esac - -exit 0 |