Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • if the script starts a daemon, does it get the daemon to go into the background and detach itself from it? i.e. does the script itself still complete? Commented Feb 16, 2013 at 11:10
  • the script starts the daemon and exits, and I think detach itself from it. The script is a python script and uses subprocess.call() to start the daemon Commented Feb 16, 2013 at 18:06
  • documentation for call says that the process waits for the call to complete. If the daemon does not return immediately, that could be why you have this issue. Can you change the script to fork the daemon instead and see if that does it? Commented Feb 16, 2013 at 19:05