diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-20 09:44:03 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-19 23:36:05 +0000 |
commit | 39932f21dabbd96b6a1e7165d9289069cac87a3e (patch) | |
tree | fe0f9bf0a54016ad2b15b6567bd4f9b52afad900 /script | |
parent | 0a2e55bb41c8ed32d4731c8b6456fc714a1149f4 (diff) | |
download | samba-39932f21dabbd96b6a1e7165d9289069cac87a3e.tar.gz samba-39932f21dabbd96b6a1e7165d9289069cac87a3e.tar.bz2 samba-39932f21dabbd96b6a1e7165d9289069cac87a3e.zip |
autobuild: create an autobuild.pid file
this will allow us to avoid an error email when you resubmit and there
is an existing autobuild.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Tue Oct 19 23:36:05 UTC 2010 on sn-devel-104
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index cb3e9595bd..3fae59f255 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -273,6 +273,13 @@ def daemonize(logfile): os.dup2(0, 1) os.dup2(0, 2) +def write_pidfile(fname): + '''write a pid file, cleanup on exit''' + f = open(fname, mode='w') + f.write("%u\n" % os.getpid()) + f.close() + cleanup_list.append(fname) + def rebase_tree(url): print("Rebasing on %s" % url) @@ -435,6 +442,8 @@ if options.daemon: print "Forking into the background, writing progress to %s" % logfile daemonize(logfile) +write_pidfile(gitroot + "/autobuild.pid") + while True: try: run_cmd("rm -rf %s" % test_master) |