[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: ra_svn permissions

From: Ben Collins-Sussman <sussman_at_collab.net>
Date: 2003-02-26 17:12:30 CET

Timothee Besset <ttimo@idsoftware.com> writes:

> Interesting (and freaking ugly).
>
> Where can I find dummy examples in perl/python/C whatever to do the
> svnserver wrapping and umask set?

We're talking about something really simple here:

$ mv /usr/local/bin/svnserve /usr/local/bin/svnserve-real
$ cat > /usr/local/bin/svnserve
#!/bin/sh
umask 002
/usr/local/bin/svnserve-real $*
^D
$ chmod +x /usr/local/bin/svnserve

...catch my drift?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Feb 26 15:13:46 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.