Sha256: 3ebd7654ca498e0e8957a0948f6e6efddaf56cd7f0e98a8d2c99086ae96b6ba6

Contents?: true

Size: 628 Bytes

Versions: 45

Compression:

Stored size: 628 Bytes

Contents

# -*- makefile -*-

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

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

start:
	twistd --no_save -y buildbot.tac

stop:
	if [ -e twistd.pid ]; \
	then kill `cat twistd.pid`; \
	else echo "Nothing to stop."; \
	fi

reconfig:
	if [ -e twistd.pid ]; \
	then kill -HUP `cat twistd.pid`; \
	else echo "Nothing to reconfig."; \
	fi

log:
	if [ -e twistd.log ]; \
	then tail -f twistd.log; \
	else echo "Nothing to tail."; \
	fi

Version data entries

45 entries across 45 versions & 6 rubygems

Version Path
bmhatfield-vagrant-1.0.10 test/buildbot/master/Makefile.sample
bmhatfield-vagrant-1.0.9 test/buildbot/master/Makefile.sample
bmhatfield-vagrant-1.0.8 test/buildbot/master/Makefile.sample
bmhatfield-vagrant-1.0.7 test/buildbot/master/Makefile.sample
vagrantup-1.0.7 test/buildbot/master/Makefile.sample
vagrantup-1.0.6 test/buildbot/master/Makefile.sample
vagrantup-1.0.5 test/buildbot/master/Makefile.sample
vagrantup-1.0.4 test/buildbot/master/Makefile.sample
vagrantup-1.0.3 test/buildbot/master/Makefile.sample
vagrantup-1.0.2 test/buildbot/master/Makefile.sample
vagrantup-1.0.1 test/buildbot/master/Makefile.sample
vagrantup-1.0.0 test/buildbot/master/Makefile.sample
vagrantup-0.9.99.2 test/buildbot/master/Makefile.sample
vagrantup-0.9.99.1 test/buildbot/master/Makefile.sample
vagrantup-0.9.7 test/buildbot/master/Makefile.sample
vagrantup-0.9.6 test/buildbot/master/Makefile.sample
vagrantup-0.9.5 test/buildbot/master/Makefile.sample
vagrantup-0.9.4 test/buildbot/master/Makefile.sample
vagrantup-0.9.3 test/buildbot/master/Makefile.sample
vagrantup-0.9.2 test/buildbot/master/Makefile.sample