summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-21 11:59:37 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-21 11:59:37 +0100
commit120b226d0f8b5ffe6d94c1443df00db0f6e9f737 (patch)
tree7936abd514fdf8e7fec1556a4fc0878638203167
parentfca8cfcf53834cf83ce85bf442f5e59e90ae2408 (diff)
downloadorchestration-120b226d0f8b5ffe6d94c1443df00db0f6e9f737.tar.gz
Rename example-slave to local-slave
This will avoid confusion when there are multiple slaves
-rw-r--r--source/master.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/master.cfg b/source/master.cfg
index 8f2cf99..cb3600b 100644
--- a/source/master.cfg
+++ b/source/master.cfg
@@ -14,7 +14,7 @@ c = BuildmasterConfig = {}
# a BuildSlave object, specifying a unique slave name and password. The same
# slave name and password must be configured on the slave.
from buildbot.buildslave import BuildSlave
-c['slaves'] = [BuildSlave("example-slave", "pass")]
+c['slaves'] = [BuildSlave("local-slave", "pass")]
# 'protocols' contains information about protocols which master will use for
# communicating with slaves.
@@ -73,7 +73,7 @@ c['builders'] = []
for column in orch_config.columns:
c['builders'].append(
BuilderConfig(name=column.name,
- slavenames=["example-slave"],
+ slavenames=["local-slave"],
factory=column.factory))
####### STATUS TARGETS