[Capistrano] Re: Deploy hanging on defunct process

2007-04-27 Thread Chuck Grindel
I am experiencing an issue that sounds suspiciously like the hang described above. Unfortunately, changing the sshd configuration (i.e., set AddressFamily to inet in sshd_config file) did not alleviate the hang. Specifically, I have a process that runs in my production environment that

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-06 Thread Jamis Buck
On Mar 6, 2007, at 7:15 PM, CraX Sun wrote: I met same problem like this, but when adding ssh_options[:debug] = :verbose in deploy.rb, i got: invalid option(s) to Net::SSH::Transport::Session: [:debug] anything wrong? Yes, I gave the wrong directions. Try: ssh_options[:verbose] =

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-04 Thread Jamis Buck
What is the OS, both local and remote? - Jamis On Mar 4, 2007, at 12:26 PM, Jordan McKible wrote: I'm trying to get cap setup on a new machine and I'm having some problems. Whenever I run a task, my local machine hangs on executing the command. For example: $ cap setup * executing task

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-04 Thread Jordan McKible
Local is OS X 10.4.8 Remote is Debian 3.1 The old machine was Ubuntu 6.06.1 and it was running without a hitch. I've also got Capistrano 1.4.1 On Mar 4, 2:36 pm, Jamis Buck [EMAIL PROTECTED] wrote: What is the OS, both local and remote? - Jamis On Mar 4, 2007, at 12:26 PM, Jordan McKible

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-04 Thread Jordan McKible
I've been able to run the setup task a few times successfully. deploy is still hanging on random commands. I've seen cp, rm, and ls commands all get defunct on the remote server. I can't seem to narrow the problem down to one place. On Mar 4, 2:41 pm, Jordan McKible [EMAIL PROTECTED] wrote:

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-04 Thread Jamis Buck
What version of Ruby are you running locally? Is it the Ruby that comes preinstalled with OS X, or did you build it yourself? - Jamis On Mar 4, 2007, at 1:41 PM, Jordan McKible wrote: I've been able to run the setup task a few times successfully. deploy is still hanging on random

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-04 Thread Jordan McKible
I built it myself. $ ruby -v ruby 1.8.5 (2006-12-25 patchlevel 12) [i686-darwin8.8.2] Same version is on remote, if that matters. On Mar 4, 3:47 pm, Jamis Buck [EMAIL PROTECTED] wrote: What version of Ruby are you running locally? Is it the Ruby that comes preinstalled with OS X, or did you

[Capistrano] Re: Deploy Hanging on Defunct Process

2007-03-04 Thread Jamis Buck
You can try putting the following in your deploy.rb: ssh_options[:debug] = :verbose Running cap will then spew out an ENORMOUS amount of Net::SSH debugging info, to your console. If you'll save that to a file and email it to me directly, I can look over it and see if there is anything