Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the configuration of some slaves in the SVN, making sure that it does not contain...
[simgrid.git] / build / buildbot / dist-worker / buildbot.tac
diff --git a/build/buildbot/dist-worker/buildbot.tac b/build/buildbot/dist-worker/buildbot.tac
new file mode 100644 (file)
index 0000000..78b3461
--- /dev/null
@@ -0,0 +1,18 @@
+
+from twisted.application import service
+from buildbot.slave.bot import BuildSlave
+
+basedir = r'/var/lib/buildbot/simgrid/dist-worker'
+host = 'bob.loria.fr'
+port = 9989
+slavename = 'bob_dist_worker'
+from account import passwd # Separate file to put this one in the SVN
+keepalive = 600
+usepty = 1
+umask = None
+
+application = service.Application('buildslave')
+s = BuildSlave(host, port, slavename, passwd, basedir, keepalive, usepty,
+               umask=umask)
+s.setServiceParent(application)
+