[pypy-commit] buildbot default: Use "nohup" to start twistd in the background. It is completely

arigo noreply at buildbot.pypy.org
Wed Aug 24 11:34:36 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r583:1240452e8014
Date: 2011-08-24 11:39 +0200
http://bitbucket.org/pypy/buildbot/changeset/1240452e8014/

Log:	Use "nohup" to start twistd in the background. It is completely
	obscure, but it seems that otherwise, on Mac OS/X, the background
	process might not get access to the DNS any more (???????).

diff --git a/slave/Makefile b/slave/Makefile
--- a/slave/Makefile
+++ b/slave/Makefile
@@ -7,7 +7,7 @@
 # The 'reconfig' target will tell a buildmaster to reload its config file.
 
 start:
-	twistd --no_save -y buildbot.tac
+	nohup twistd --no_save -y buildbot.tac
 
 stop:
 	kill `cat twistd.pid`


More information about the pypy-commit mailing list