Re: [Fab-user] hanging problem of a command when executing via fabric

2010-06-23 Thread Nico Mandery
Hi Rama, from the name of the command I guess you are trying to launch a webserver on the remote machine. Are you sure it daemonizes correctly? Does it keep running when you start it manually and then close the console to the server? Maybe it is still attached to the console. In this case you

[Fab-user] hanging problem of a command when executing via fabric

2010-06-23 Thread Rama Vadakattu
Hi all, When i am running the below command on one of the machine via fabric it is getting hanged. *def execute_lmo_scripts():* *print preparing to execute lmo scripts* *output = run(sudo suwww ; )* * * If i manually run the command on the remote server it is being

Re: [Fab-user] hanging problem of a command when executing via fabric

2010-06-23 Thread Jeff Forcier
On Wed, Jun 23, 2010 at 5:21 AM, Nico Mandery nico.mand...@geops.de wrote: Maybe it is still attached to the console. In this case you propably want to have a look at the disown command: http://sial.org/howto/shell/background/ If that's the case, Rama may also want to check out this FAQ for