=== JanC_ is now known as JanC [18:10] hello [18:11] can anyone tell me why 'sudo initctl start $job' might hang? [18:11] I'm trying to run a Ruby app using Thin and I'd like to use upstart to supervise it. [18:13] here's the /etc/init/app.conf [18:13] https://gist.github.com/661448 [19:03] Schuyler: my guess would be that it doesn't detect that the app is running [19:03] it doesn't seem to even start the app. [19:04] if I run that /usr/bin/thin command line manually, it works. [19:04] upstream initctl just hangs. [19:05] did you check with 'top' or 'ps' whether it runs or not ? [19:06] there are some issues in the current release of upstart with detecting if a service runs or not [19:45] JanC, I think I got it figured out. [19:45] However, I had to reboot. [19:45] I ran strace and initctl was blocked on reading/writing to a socket. [19:45] it had hung on a call to poll() [19:45] rebooting fixed the hanging problem [19:46] if you have been trying different settings, upstart sometimes gets confused ;) [19:46] at least, IME