aboutsummaryrefslogtreecommitdiffstats
path: root/yocto-controller/buildbot.tac.example
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-controller/buildbot.tac.example')
-rw-r--r--yocto-controller/buildbot.tac.example32
1 files changed, 0 insertions, 32 deletions
diff --git a/yocto-controller/buildbot.tac.example b/yocto-controller/buildbot.tac.example
deleted file mode 100644
index a9617a9f..00000000
--- a/yocto-controller/buildbot.tac.example
+++ /dev/null
@@ -1,32 +0,0 @@
-import os
-
-from twisted.application import service
-from buildbot.master import BuildMaster
-
-basedir = r'.'
-rotateLength = 10000000
-maxRotatedFiles = 99
-
-# 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__))
-
-application = service.Application('buildmaster')
-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
-
-configfile = r'controller.cfg'
-
-m = BuildMaster(basedir, configfile)
-m.setServiceParent(application)
-m.log_rotation.rotateLength = rotateLength
-m.log_rotation.maxRotatedFiles = maxRotatedFiles
-