Re: Subversion access control / Linux users etc.

2011-07-23 Thread Andy Canfield
Thank you very much. On 07/22/2011 02:36 AM, Ryan Schmidt wrote: On Jul 21, 2011, at 06:54, Andy Canfield wrote: The browser, when pointing to http://localhost/svn/RepoName, gives this answer RepoName - Revision 0: / Powered by Subversion version 1.6.12 (r955767). This is true

Re: Subversion access control

2011-07-22 Thread Andy Canfield
Thank you very much On 07/20/2011 10:27 PM, Geoff Hoffman wrote: Andy, I thought you were off Apache and onto svnserve. Anyway, I sent you this info last week - maybe you missed it. It is pasted again below. I will grant to you that it is tricky to set up. The david winter blog post below

Re: Subversion access control

2011-07-22 Thread Geoff Hoffman
On Thu, Jul 21, 2011 at 11:19 PM, Andy Canfield andy.canfi...@pimco.mobiwrote: I notice that you don't have any entries that read ... = r; everyone who can read can write also. No need? Yeah, I just don't have a use case for that. The RSS feed of a repo commits from websvn is much more

Re: Subversion access control / Linux users etc.

2011-07-21 Thread Andy Canfield
More user/command interaction - The commands to create the Subversion Repository Parent directory were *sudo bash mkdir /data/svn chmod a+w /data/svn* This created this directory: *drwxrwxrwx 4 root 4096 2011-07-21 17:36 /data/svn/* I ran this command as user root: *svnadmin

Re: Subversion access control

2011-07-21 Thread Geoff Hoffman
On Wed, Jul 20, 2011 at 9:14 PM, Andy Canfield andy.canfi...@pimco.mobiwrote: ** Thank you very much. On 07/20/2011 12:19 PM, Nico Kadel-Garcia wrote: On Tue, Jul 19, 2011 at 11:14 PM, Andy Canfieldandy.canfi...@pimco.mobi andy.canfi...@pimco.mobi wrote: One thing has hit my mind

Re: Subversion access control

2011-07-21 Thread Geoff Hoffman
On Wed, Jul 20, 2011 at 9:14 PM, Andy Canfield andy.canfi...@pimco.mobiwrote: ** Thank you very much. On 07/20/2011 12:19 PM, Nico Kadel-Garcia wrote: On Tue, Jul 19, 2011 at 11:14 PM, Andy Canfieldandy.canfi...@pimco.mobi andy.canfi...@pimco.mobi wrote: One thing has hit my

Re: Subversion access control / Linux users etc.

2011-07-21 Thread Geoff Hoffman
On Thu, Jul 21, 2011 at 4:54 AM, Andy Canfield andy.canfi...@pimco.mobiwrote: ** More user/command interaction - The commands to create the Subversion Repository Parent directory were *sudo bash mkdir /data/svn chmod a+w /data/svn* This created this directory: *drwxrwxrwx

Re: Subversion access control / Linux users etc.

2011-07-21 Thread Thomas Harold
The issues with passwords is why we ended up going with SSH public-key authentication. Load the SSH key into the SSH agent, unlock it with the passphrase, then don't worry about it again until we reset the SSH agent at logout. Less prompts, happier users. (Plus it makes it harder to get

Re: Subversion access control

2011-07-20 Thread Geoff Hoffman
Andy, I thought you were off Apache and onto svnserve. Anyway, I sent you this info last week - maybe you missed it. It is pasted again below. I will grant to you that it is tricky to set up. The david winter blog post below spells it out perfectly... for a single repo setup, multiple users. For

Re: Subversion access control

2011-07-20 Thread Andy Canfield
Thank you very much. On 07/20/2011 12:19 PM, Nico Kadel-Garcia wrote: On Tue, Jul 19, 2011 at 11:14 PM, Andy Canfield andy.canfi...@pimco.mobi wrote: One thing has hit my mind today that I don't think you realize ... I have never, in my entire life, seen a working Subversion system.

Re: Subversion access control

2011-07-19 Thread Andy Canfield
OFF THE SUBJECT OF APACHE, NOW TRYING TO ACCESS SVNSERVE VIA PORT 3690 /var/svn/config/svnserve.conf has been changed from the default to show *anon-access = none password-db = passwd authz-db = authz* The passwd file contains *andy = canfield* The authz file contains: *[/sample] andy = rw*

Re: Subversion access control

2011-07-19 Thread Andy Levy
On Tue, Jul 19, 2011 at 06:50, Andy Canfield andy.canfi...@pimco.mobi wrote: OFF THE SUBJECT OF APACHE, NOW TRYING TO ACCESS SVNSERVE VIA PORT 3690 /var/svn/config/svnserve.conf has been changed from the default to show anon-access = none password-db = passwd authz-db = authz The passwd

Re: Subversion access control

2011-07-19 Thread Thorsten Schöning
Guten Tag Andy Canfield, am Dienstag, 19. Juli 2011 um 12:50 schrieben Sie: [1] Why does it ask for the password for andy, then ask for a user name and password? The svn client first tried the last used user or your current username on underlying OS. [2] What is an authentication realm?

RE: Subversion access control

2011-07-19 Thread Bob Archer
Guten Tag Andy Canfield, am Dienstag, 19. Juli 2011 um 12:50 schrieben Sie: [1] Why does it ask for the password for andy, then ask for a user name and password? The svn client first tried the last used user or your current username on underlying OS. [2] What is an authentication

Re: Subversion access control

2011-07-19 Thread Nico Kadel-Garcia
On Tue, Jul 19, 2011 at 11:14 PM, Andy Canfield andy.canfi...@pimco.mobi wrote: One thing has hit my mind today that I don't think you realize ...     I have never, in my entire life, seen a working Subversion system. Apparently Subversion, as distributed, doesn't work - the access

Subversion access control

2011-07-17 Thread Andy Canfield
We are running svnserve on a Mac OS X. I can not get the subversion server to control access. I executed the server by this command: */usr/bin/svnserve --daemon --root=/var/svn --config-file=/var/svn/config/svnserve.conf* As long as file /var/svn/config/svnserve.conf contains the original

Subversion: Access control management

2011-07-17 Thread Andy Canfield
The file /var/svn/sample/README.txt says *This is a Subversion repository; use the 'svnadmin' tool to examine it. Do not add, delete, or modify files here unless you know how to avoid corrupting the repository.* but as far as I know there are no svnadmin tools to control access to

Re: Subversion access control

2011-07-17 Thread Andy Levy
On Sun, Jul 17, 2011 at 02:06, Andy Canfield andy.canfi...@pimco.mobi wrote: We are running svnserve on a Mac OS X. I can not get the subversion server to control access. I executed the server by this command:     /usr/bin/svnserve --daemon --root=/var/svn

Re: Subversion: Access control management

2011-07-17 Thread Andy Levy
On Sun, Jul 17, 2011 at 02:07, Andy Canfield andy.canfi...@pimco.mobi wrote: The file /var/svn/sample/README.txt says     This is a Subversion repository; use the 'svnadmin' tool to examine     it.  Do not add, delete, or modify files here unless you know how     to avoid corrupting the

Re: Subversion access control

2011-07-17 Thread Matthew Beals
@subversion.apache.org Sent: Sunday, July 17, 2011 2:06:21 AM GMT -05:00 US/Canada Eastern Subject: Subversion access control We are running svnserve on a Mac OS X. I can not get the subversion server to control access. I executed the server by this command: /usr/bin/svnserve --daemon --root=/var/svn --config