source: server/common/oursrc/execsys/svn @ 825

Last change on this file since 825 was 825, checked in by andersk, 16 years ago
Package the svn vhosting infrastructure into execsys.
  • Property svn:executable set to *
File size: 183 bytes
Line 
1#!/bin/sh
2
3export HOME=$(echo ~)
4
5case "$1" in
6*/.. | */../*)
7    exit 1
8    ;;
9${HOME%/Scripts}/Scripts/svn/*)
10    exec /usr/bin/svnserve -i -r "$1"
11    ;;
12*)
13    exit 1
14    ;;
15esac
Note: See TracBrowser for help on using the repository browser.