Sha256: d87ff8b7d61d1301ab941d433cd942a9eb1167f7bbd78b7ca07cf90116561d87

Contents?: true

Size: 1.27 KB

Versions: 45

Compression:

Stored size: 1.27 KB

Contents

import os

from twisted.application import service
from buildslave.bot import BuildSlave

from buildbot_config.config.slave import options

basedir = r'.'
rotateLength = 10000000
maxRotatedFiles = 10

# if this is a relocatable tac file, get the directory containing the TAC
if basedir == '.':
    import os.path
    basedir = os.path.abspath(os.path.dirname(__file__))

# note: this line is matched against to check that this is a buildslave
# directory; do not edit it.
application = service.Application('buildslave')

try:
  from twisted.python.logfile import LogFile
  from twisted.python.log import ILogObserver, FileLogObserver
  logfile = LogFile.fromFullPath(os.path.join(basedir, "twistd.log"), rotateLength=rotateLength,
                                 maxRotatedFiles=maxRotatedFiles)
  application.setComponent(ILogObserver, FileLogObserver(logfile).emit)
except ImportError:
  # probably not yet twisted 8.2.0 and beyond, can't set log yet
  pass

buildmaster_host = options.master_host
port = options.master_port
slavename = options.name
passwd = options.password
keepalive = 600
usepty = 0
umask = None
maxdelay = 300

s = BuildSlave(buildmaster_host, port, slavename, passwd, basedir,
               keepalive, usepty, umask=umask, maxdelay=maxdelay)
s.setServiceParent(application)

Version data entries

45 entries across 45 versions & 6 rubygems

Version Path
bmhatfield-vagrant-1.0.10 test/buildbot/slave/buildbot.tac
bmhatfield-vagrant-1.0.9 test/buildbot/slave/buildbot.tac
bmhatfield-vagrant-1.0.8 test/buildbot/slave/buildbot.tac
bmhatfield-vagrant-1.0.7 test/buildbot/slave/buildbot.tac
vagrantup-1.0.7 test/buildbot/slave/buildbot.tac
vagrantup-1.0.6 test/buildbot/slave/buildbot.tac
vagrantup-1.0.5 test/buildbot/slave/buildbot.tac
vagrantup-1.0.4 test/buildbot/slave/buildbot.tac
vagrantup-1.0.3 test/buildbot/slave/buildbot.tac
vagrantup-1.0.2 test/buildbot/slave/buildbot.tac
vagrantup-1.0.1 test/buildbot/slave/buildbot.tac
vagrantup-1.0.0 test/buildbot/slave/buildbot.tac
vagrantup-0.9.99.2 test/buildbot/slave/buildbot.tac
vagrantup-0.9.99.1 test/buildbot/slave/buildbot.tac
vagrantup-0.9.7 test/buildbot/slave/buildbot.tac
vagrantup-0.9.6 test/buildbot/slave/buildbot.tac
vagrantup-0.9.5 test/buildbot/slave/buildbot.tac
vagrantup-0.9.4 test/buildbot/slave/buildbot.tac
vagrantup-0.9.3 test/buildbot/slave/buildbot.tac
vagrantup-0.9.2 test/buildbot/slave/buildbot.tac