[Buildbot-commits] buildbot/buildbot/scripts sample.cfg,1.12,1.13

Brian Warner warner at users.sourceforge.net
Fri Jul 27 10:13:57 UTC 2007


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

Modified Files:
	sample.cfg 
Log Message:
[project @ rename c['bots'] to c['slaves'], and use buildbot.slave.BuildSlave instances instead of tuples. Closes #63.]

Original author: warner at lothar.com
Date: 2007-07-27 09:11:01+00:00

Index: sample.cfg
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/scripts/sample.cfg,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- sample.cfg	22 Sep 2006 05:46:28 -0000	1.12
+++ sample.cfg	27 Jul 2007 10:13:55 -0000	1.13
@@ -16,10 +16,11 @@
 
 ####### BUILDSLAVES
 
-# the 'bots' list defines the set of allowable buildslaves. Each element is a
-# tuple of bot-name and bot-password. These correspond to values given to the
-# buildslave's mktap invocation.
-c['bots'] = [("bot1name", "bot1passwd")]
+# the 'slaves' list defines the set of allowable buildslaves. Each element is
+# a tuple of bot-name and bot-password. These correspond to values given to
+# the buildslave's mktap invocation.
+from buildbot.slave import BuildSlave
+c['slaves'] = [BuildSlave("bot1name", "bot1passwd")]
 
 
 # 'slavePortnum' defines the TCP port to listen on. This must match the value





More information about the Commits mailing list