I'm running SubVersion 1.6.11 on RHEL6.
I added a new svn repo like so: svnadmin create /var/svn
I run svnserve as the svn user like: svnserve -d --root=/var/svn
The repository is setup like /var/svn/projectname/branch
I can check out files like this svn co svn+ssh://svnhost/var/svn/projectname localco
But this shouldn't work because svnserve is set with --root=/var/svn
I should be able to do svn co svn+ssh://svnhost/projectname localco
But get an error "svn: No repository found in 'svn+ssh://svnhost/projectname'"
Why is the virtual root not working?