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

RE: Help Implementing svnperms.py

From: Reedick, Andrew <Andrew.Reedick_at_BellSouth.com>
Date: 2006-09-21 18:31:04 CEST

> -----Original Message-----
> From: Rob Wilkerson [mailto:r.d.wilkerson@gmail.com]
> Sent: Thursday, September 21, 2006 12:26 PM
> To: Subversion Mailing List
> Subject: Help Implementing svnperms.py
>
> I'm trying to get svnperms configured and working properly, but I
> don't seem to be having much luck. I feel like it's a problem of me
> just not knowing what I'm doing, but I've had a hard time finding a
> good end-to-end explanation of every component. I'm hoping someone
> here can help me identify and correct the error of my ways.
>
>
> /usr/bin/python /opt/projects/bin/svn/svnperms.py \
> -r $REPOS \
> -t $TXN
>
> exit 0
>
> For some reason, user3 is able to commit changes to a branches
> subdirectory. What am I missing in my call or my config?
>

You're always exiting with 0.

/usr/bin/python /opt/projects/bin/svn/svnperms.py \
 -r $REPOS \
 -t $TXN
if [ $? -ne 0 ]
then
        exit 1
fi

*****

The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers. GA621

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Sep 21 18:32:21 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.