import os from twisted.application import service from buildslave.bot import BuildSlave basedir = r'/home/buildslave/slave' 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 = '{{ buildmaster }}' port = 9989 slavename = '{{ buildslave_name }}' {% if deployment_type == 'dev' %} passwd = '{{ dev_buildslave_password }}' {% endif %} {% if deployment_type == 'stg' %} passwd = '{{ stg_buildslave_password }}' {% endif %} {% if deployment_type == 'prod' %} passwd = '{{ prod_buildslave_password }}' {% endif %} {% if deployment_type == 'qadevel-prod' %} passwd = '{{ qadevel_prod_buildslave_password }}' {% endif %} {% if deployment_type == 'qadevel-stg' %} passwd = '{{ qadevel_stg_buildslave_password }}' {% endif %} 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)