# Project: svn-wrappers
# language: perl & bash
# license: GPL (GNU Public License)
# Original Author: John 'Warthog9' Hawley
# e-mail: warthog19@eaglescrag.net
#
#                  \|/  ( Hi! )
#                 (o o) /
# -----------o00o--(_)--o00o-----------
#

Not much to really get into, this set of scripts basically allows you to create a central configuration file for svn, this simplifies and centralizes a little bit of the configuration information that would take place between multiple access methods.The scripts as a total basically read in the configuration file, and overlay any options that are passed to it on the command line.  You can treat the svnserve script that is bundeled here just like you normally would treat svnserve with the exception that my script will preload several options from the configuration file.

Things to note:
	To get this to work with svn+ssh I needed to setup the path so that it was available upon ssh login, I added the following to /etc/bashrc:
	PATH=/usr/svn-wrappers:/usr/local/bin:/usr/bin

	The basic idea is to get the svn-wrappers directory in before svnserve would normally execute.
