summaryrefslogtreecommitdiff
path: root/testing/subversion/svnserve
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-12 17:24:29 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-12 17:24:29 -0300
commit20325742c50f83cc58e49aa3b8347fde1399d734 (patch)
treec165cfbea80913f12dad4d009a70d9fe5e8bfceb /testing/subversion/svnserve
parent42512f0cff006451fa78981bf2f41e819fe96131 (diff)
parent6a2547c3f20da8a8df65a8032a01677b74b6ece7 (diff)
Merge branch 'master' of ssh://gparabola/abslibre-mips64el
Conflicts: community/mplayer2/PKGBUILD extra/live-media/PKGBUILD
Diffstat (limited to 'testing/subversion/svnserve')
-rwxr-xr-xtesting/subversion/svnserve42
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/subversion/svnserve b/testing/subversion/svnserve
new file mode 100755
index 000000000..670fee742
--- /dev/null
+++ b/testing/subversion/svnserve
@@ -0,0 +1,42 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+. /etc/conf.d/svnserve
+
+PID=`pidof -o %PPID /usr/bin/svnserve`
+case "$1" in
+ start)
+ stat_busy "Starting svnserve"
+ if [ -z "$PID" ]; then
+ if [ -n "$SVNSERVE_USER" ]; then
+ su -s '/bin/sh' $SVNSERVE_USER -c "/usr/bin/svnserve -d $SVNSERVE_ARGS" &
+ else
+ /usr/bin/svnserve -d $SVNSERVE_ARGS &
+ fi
+ fi
+ if [ ! -z "$PID" -o $? -gt 0 ]; then
+ stat_fail
+ else
+ add_daemon svnserve
+ stat_done
+ fi
+ ;;
+ stop)
+ stat_busy "Stopping svnserve"
+ [ ! -z "$PID" ] && kill $PID &> /dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ rm_daemon svnserve
+ stat_done
+ fi
+ ;;
+ restart)
+ $0 stop
+ sleep 1
+ $0 start
+ ;;
+ *)
+ echo "usage: $0 {start|stop|restart}"
+esac