Asheesh Laroia <asheesh@xxxxxxxxxxx> wrote: > On Mon, 28 Jan 2008, Shawn O. Pearce wrote: > > > >I've had enough cases of users losing their SSH key and needing to > >recreate it that I'd rather not have to manage a 50 user long > >authorized_keys file. > > For what it's worth, if you haven't seen gitosis yet, you might want to > take a look - at least it makes managing the keys easy. > http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way > has a nice tutorial. Yea, I've looked at it before. There's a few reasons I don't use gitosis, although it does look to be an excellent chunk of Git automation: * Its access controls aren't as powerful Frankly the contrib/hooks/update-paranoid script is a lot more powerful then gitosis is, in terms of how it controls what branches a user can modify, and even what files they can change on a particular branch. And yes, I really do have rulesets that bend that hook to its limits. * It uses the OpenSSH authorized_keys file format I'm required to use the F-Secure SSH commerical server at day-job, because its "more trusthworthy" than the portable OpenSSH distribution. It uses a different syntax for the authorized keys, but can do essentially the same restricted command concept. * If its in git, I prefer raw repository access gitosis yanks stuff out into normal files to access it at runtime, e.g. its configuration file. I've had bad experiences with CVS not properly updating its admin files when changes are made to them. The update-paranoid hook I use actually cats the objects right out of the admin ODB on demand, ensuring its always evaluating the most recent version of the access rules. * Its Python based. I don't grok Python, and would rather not learn to. So hacking on gitosis isn't something that I would be doing. Ditto with all of my day-job cohorts. We use Perl, Bourne shell, and Java, with some tiny amount of Tk thrown about (though I'd say I'm probably the only one there that even remotely groks Tcl/Tk). But thanks for the pointer. Now if others corrected all of the above in gitosis (except the last item of course, I don't expect it to be rewritten in one of my preferred languages) I'd reconsider using it, because inventing wheels sucks. -- Shawn. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html