[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Savannah-hackers-public] mercurial ssh access issues
From: |
Sylvain Beucler |
Subject: |
Re: [Savannah-hackers-public] mercurial ssh access issues |
Date: |
Tue, 15 Apr 2008 21:10:46 +0200 |
User-agent: |
Mutt/1.5.17+20080114 (2008-01-14) |
Hi,
Good idea. Try to see if you can modify backend/account/sv_membersh.in
in this regard.
"cd /srv/hg/project" is a good idea, it permits to avoid the /srv/hg
path. Too bad I didn't think of this for SVN and Git at Savannah ;)
--
Sylvain
On Tue, Apr 15, 2008 at 08:42:25PM +0200, Aleix Conchillo Flaqué wrote:
> Hi,
>
> I have been trying the limited Mercurial pull/push access using the hg-
> ssh script and it works fine. The authorized_keys file must look like
> this:
>
> command="cd /srv/hg/project && hg-ssh . *" ssh-rsa .....
>
> With "." we solve a single repo and with "*" we also solve multiple
> subrepos.
>
> So, what's the problem? The problem is that now only mercurial commands
> are allowed. With the options available, the hg-ssh script seems the
> cleanest way to solve the ssh access, so I think it would be great to use
> it.
>
> How? I've been thinking on creating a general ssh script, let's say
> sv_ssh_access. So in the authorized_keys we would have:
>
> command="sv_ssh_access" ssh-rsa ....
>
> The script would need to check for the command passed via ssh
> (SSH_ORIGINAL_COMMAND) and do whatever (e.g. call hg-ssh). It would also
> be useful to display "Out of service" messages or anything else we could
> imagine.
>
> I have tried it with a simple python script that calls hg-ssh:
>
> -----------
>
> #!/usr/bin/env python
>
> import os
>
> os.chdir("/var/srv/hg/sources/test_project")
> os.system("hg-ssh . *")
>
> -----------
>
> Now, the script could be just (which also works fine):
>
> -----------
> !/bin/sh
>
> exec $SSH_ORIGINAL_COMMAND
> -----------
>
> It's just an idea.
- [Savannah-hackers-public] initial mercurial backend, Aleix Conchillo Flaqué, 2008/04/14
- [Savannah-hackers-public] Re: initial mercurial backend, Aleix Conchillo Flaqué, 2008/04/15
- [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/15
- Re: [Savannah-hackers-public] mercurial ssh access issues,
Sylvain Beucler <=
- Re: [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/17
- Re: [Savannah-hackers-public] mercurial ssh access issues, Sylvain Beucler, 2008/04/17
- Re: [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/17
- Re: [Savannah-hackers-public] mercurial ssh access issues, Sylvain Beucler, 2008/04/17
- Re: [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/20
- Re: [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/20
- Re: [Savannah-hackers-public] mercurial ssh access issues, Sylvain Beucler, 2008/04/21
- Re: [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/21
- Re: [Savannah-hackers-public] mercurial ssh access issues, Sylvain Beucler, 2008/04/21
- Re: [Savannah-hackers-public] mercurial ssh access issues, Aleix Conchillo Flaqué, 2008/04/22