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

Re: berkeley db help for a newbie

From: Marc Haisenko <haisenko_at_comdasys.com>
Date: 2006-03-15 19:19:31 CET

On Wednesday 15 March 2006 19:00, Simon Butler wrote:
> hi, sorry i know this issue has come up a few times on the list but i
> still can't figure it out :(
>
> i have umask 002 for all the users on the system and i have g+s
> permissions on the repos. all the users are in the same
> group as the repositary owner. the issue seems to be when my co-
> developer comes in with a commit using sv+ssh, the log
> file in the db dir ends up with the wrong permissions. i had him set
> umask 002 on his remote account but this doesn't have
> any effect either..
>
> any clues would be most appreciated!!
>
> a more complete summary of the issue below..

You could try one of the following things:

- write "umask 002" in the users' .bashrc and/or .profile
- have PAM set the umask
- move "svn" to "svn.real" and put a wrapper in its place that looks like
this:

---snip---
#!/bin/bash

umask 002
/path/to/svn.real "$@"
---/snip---

The last one is probably the best, as having all user generated file with a
umask of 002 is probably not what you want. When you use the wrapper only svn
access has that umask.

C'ya,
        Marc

-- 
Marc Haisenko
Comdasys AG
Rüdesheimer Straße 7
D-80686 München
Tel:   +49 (0)89 - 548 43 33 0
Fax:   +49 (0)89 - 548 43 33 29
e-mail: haisenko@comdasys.com
http://www.comdasys.com
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Mar 15 19:21:06 2006

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

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