Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sbuildbot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sbuildbot/Makefile')
-rw-r--r--sbuildbot/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/sbuildbot/Makefile b/sbuildbot/Makefile
new file mode 100644
index 0000000..5f79e59
--- /dev/null
+++ b/sbuildbot/Makefile
@@ -0,0 +1,19 @@
+# -*- makefile -*-
+
+# This is a simple makefile which lives in a buildmaster/buildslave
+# directory (next to the buildbot.tac file). It allows you to start/stop the
+# master or slave 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 --nodaemon
+
+stop:
+ kill `cat twistd.pid`
+
+reconfig:
+ kill -HUP `cat twistd.pid`
+
+log:
+ tail -f twistd.log