X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f4ae32c676421a6cd5c076b273dd7a07f2695957..98cd9c3abed975096b3b915a6f321522760c2fca:/build/buildbot/dist-worker/buildbot.tac diff --git a/build/buildbot/dist-worker/buildbot.tac b/build/buildbot/dist-worker/buildbot.tac deleted file mode 100644 index d059b418a0..0000000000 --- a/build/buildbot/dist-worker/buildbot.tac +++ /dev/null @@ -1,18 +0,0 @@ - -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' -from slave_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) -