You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "Cooke, Mark" <ma...@siemens.com> on 2011/05/09 18:18:37 UTC

How to control changes to path-based auth file?

Dear list,

I was wondering how other (probably corporate?) svn users control and
log changes to your path-based auth file (and other svn web settings)?

I was thinking that I could use svn and the auto-website-update FAQ
(http://subversion.apache.org/faq.html#website-auto-update) to control
access by allowing named users access to the relevant repo...  However
this seems a little clunky and 'overkill' for what we have.

We also use `Trac` and there are a couple of trac-hacks:
 * http://trac-hacks.org/wiki/SvnAuthzAdminPlugin
 * http://trac-hacks.org/wiki/TracSvnAuthzPlugin
...that enable editing of the path-based-auth file through Trac but
neither include any versioning (for auditing purposes).

Can anyone recommend any other routes?

For information, we use Trac and subversion, served from windows server
via apache...

Many thanks,

~ mark c

Re: How to control changes to path-based auth file?

Posted by David Brodbeck <br...@uw.edu>.
On Mon, May 9, 2011 at 9:18 AM, Cooke, Mark <ma...@siemens.com> wrote:

> Dear list,
>
> I was wondering how other (probably corporate?) svn users control and
> log changes to your path-based auth file (and other svn web settings)?
>

rcs(1) is the old standby for version-controlling single files.  It doesn't
solve your access control requirement, though, just your logging
requirement.  I use it sometimes in situations where I don't want to version
control a whole directory, just a few files -- config files under /etc, for
example.

-- 
David Brodbeck
System Administrator, Linguistics
University of Washington

RE: How to control changes to path-based auth file?

Posted by "Feldhacker, Chris" <Fe...@principal.com>.
In a nutshell:  http://www.svn-access-manager.org/

Basically, store all your settings in a database and generate the config files; just use a simple web front-end to edit the database and control/log changes that way.  The svn access manager provides a good starting point, modify and tweak as needed.




-----Original Message-----
From: Cooke, Mark [mailto:mark.cooke@siemens.com] 
Sent: Monday, May 09, 2011 11:19 AM
To: users@subversion.apache.org
Subject: How to control changes to path-based auth file?

Dear list,

I was wondering how other (probably corporate?) svn users control and log changes to your path-based auth file (and other svn web settings)?

I was thinking that I could use svn and the auto-website-update FAQ
(http://subversion.apache.org/faq.html#website-auto-update) to control access by allowing named users access to the relevant repo...  However this seems a little clunky and 'overkill' for what we have.

We also use `Trac` and there are a couple of trac-hacks:
 * http://trac-hacks.org/wiki/SvnAuthzAdminPlugin
 * http://trac-hacks.org/wiki/TracSvnAuthzPlugin
...that enable editing of the path-based-auth file through Trac but neither include any versioning (for auditing purposes).

Can anyone recommend any other routes?

For information, we use Trac and subversion, served from windows server via apache...

Many thanks,

~ mark c


-----Message Disclaimer-----

This e-mail message is intended only for the use of the individual or
entity to which it is addressed, and may contain information that is
privileged, confidential and exempt from disclosure under applicable law.
If you are not the intended recipient, any dissemination, distribution or
copying of this communication is strictly prohibited. If you have
received this communication in error, please notify us immediately by
reply email to Connect@principal.com and delete or destroy all copies of
the original message and attachments thereto. Email sent to or from the
Principal Financial Group or any of its member companies may be retained
as required by law or regulation.

Nothing in this message is intended to constitute an Electronic signature
for purposes of the Uniform Electronic Transactions Act (UETA) or the
Electronic Signatures in Global and National Commerce Act ("E-Sign")
unless a specific statement to the contrary is included in this message.

While this communication may be used to promote or market a transaction
or an idea that is discussed in the publication, it is intended to provide
general information about the subject matter covered and is provided with
the understanding that The Principal is not rendering legal, accounting,
or tax advice. It is not a marketed opinion and may not be used to avoid
penalties under the Internal Revenue Code. You should consult with
appropriate counsel or other advisors on all matters pertaining to legal,
tax, or accounting obligations and requirements.


RE: How to control changes to path-based auth file?

Posted by "Cooke, Mark" <ma...@siemens.com>.
> -----Original Message-----
> From: Andy Levy [mailto:andy.levy@gmail.com] 
> 
> On Mon, May 9, 2011 at 12:18, Cooke, Mark wrote:
> > Dear list,
> >
> > I was wondering how other (probably corporate?) svn users
> > control and log changes to your path-based auth file (and
> > other svn web settings)?
> >
> > I was thinking that I could use svn and the auto-website-update FAQ
> > (http://subversion.apache.org/faq.html#website-auto-update) 
> > to control access by allowing named users access to the relevant
> > repo...  However this seems a little clunky and 'overkill' for
> > what we have.
> 
> This is exactly what I do. My configs are versioned and changes can
> easily be audited.

Thanks for the confirmation, I think this is what we will do...

> From: Feldhacker, Chris [mailto:Feldhacker.Chris@principal.com] 
>
> In a nutshell:  http://www.svn-access-manager.org/
> 
> Basically, store all your settings in a database and generate 
> the config files; just use a simple web front-end to edit the 
> database and control/log changes that way.  The svn access 
> manager provides a good starting point, modify and tweak as needed.
> 

Thanks Chris, this looks good but unfortunately I have neither PHP nor MySQL on the server box (already using PostgreSQL and Python for Trac) so I don't think it's for me.  Nice idea if I had more time...

> From: David Brodbeck [mailto:brodbd@uw.edu] 
> 
> rcs(1) is the old standby for version-controlling single 
> files.  It doesn't solve your access control requirement, 
> though, just your logging requirement.  I use it sometimes in 
> situations where I don't want to version control a whole 
> directory, just a few files -- config files under /etc, for example.
>

Thanks David but I think I'll use this opportunity to get a few more files under proper version control too, so I think svn suits me better.

Re: How to control changes to path-based auth file?

Posted by Andy Levy <an...@gmail.com>.
On Mon, May 9, 2011 at 12:18, Cooke, Mark <ma...@siemens.com> wrote:
> Dear list,
>
> I was wondering how other (probably corporate?) svn users control and
> log changes to your path-based auth file (and other svn web settings)?
>
> I was thinking that I could use svn and the auto-website-update FAQ
> (http://subversion.apache.org/faq.html#website-auto-update) to control
> access by allowing named users access to the relevant repo...  However
> this seems a little clunky and 'overkill' for what we have.

This is exactly what I do. My configs are versioned and changes can
easily be audited.