vote up 0 vote down star

I'm deploying to a Debian server with Capistrano which fails due to locked a working copy. I narrowed it down to this:

svn checkout http://myrepo.net/mysite/tags/1.0 /var/www/mysite/releases/1234

So if I run:

cap invoke COMMAND='svn checkout http://myrepo.net/mysite/tags/1.0 /var/www/mysite/releases/1234'

I get an error:

svn: Working copy '/var/www/mysite/releases/1' locked

Clean up makes no difference. The same command runs fine from the server. When I list the files in 1234/ I can see all the .svn and working copy files.

Can someone please point me in the right direction to resolve this? How do I tell if the working copy is really locked? svn status shows nothing...

flag

60% accept rate
Update: if I run the same command remotely with ssh it works fine too! Oh crap. – Rimian Oct 5 at 7:01
i have exactly the same problem, did you manage to solve it somehow? – aldrei Nov 2 at 13:46

2 Answers

vote up 0 vote down

Firstly, you need to be careful with using checkout, rather than export, to a publically accessible URL. If youi haven't locked down the .svn directories in Apache then you open up a potential security hole.

That aside, is it possible that Capistrano is running as a different user that simply doesn't have the permissions to update this directory?

link|flag
vote up 0 vote down

just had the same problem, spent about an hour trying to figure out what's happening.

i noticed the reason while looking at this string (the one before entering the password)

  * executing "svn checkout -q  -r422 svn://192.168.1.100/ /var/www/myhost/releases/20091102144836 && (echo 422 > /var/www/myhost/releases/20091102144836/REVISION)"
    servers: ["192.168.1.200", "myhost"]
Password:

basically i ordered capistrano to deploy twice to same server(myhost=192.168.1.200) in my capistrano deploy file) and it was locking itself

hope it helps someone.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.