[Buildbot-commits] buildbot/buildbot/scripts sample.mk,NONE,1.1 runner.py,1.4,1.5

Brian Warner warner at users.sourceforge.net
Tue Oct 12 17:49:18 UTC 2004


Update of /cvsroot/buildbot/buildbot/buildbot/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27218/buildbot/scripts

Modified Files:
	runner.py 
Added Files:
	sample.mk 
Log Message:
* buildbot/scripts/runner.py (createMaster): install Makefile too
(start): add --no_save to 'start' command
* buildbot/scripts/sample.mk: simple convenience Makefile with 
start/stop/reload targets



--- NEW FILE: sample.mk ---
# -*- makefile -*-

# This is a simple makefile which lives in a buildmaster/buildslave
# directory (next to the buildbot.tap file). It allows you to start/stop the
# master ot slave by doing 'make start' or 'make stop'.

# The 'reconfig' target will tell a buildmaster to reload its config file.

start:
	twistd --no_save -f buildbot.tap

stop:
	kill `cat twistd.pid`

reconfig:
	kill -HUP `cat twistd.pid`





More information about the Commits mailing list