forked from MariaDB/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
657 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import os | ||
|
||
from twisted.application import service | ||
from buildbot.master import BuildMaster | ||
|
||
basedir = '.' | ||
log_basedir = '/var/log/buildbot/' | ||
|
||
rotateLength = 20000000 | ||
maxRotatedFiles = 30 | ||
configfile = 'master.cfg' | ||
|
||
# Default umask for server | ||
umask = None | ||
|
||
# if this is a relocatable tac file, get the directory containing the TAC | ||
if basedir == '.': | ||
import os | ||
basedir = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
# note: this line is matched against to check that this is a buildmaster | ||
# directory; do not edit it. | ||
application = service.Application('buildmaster') | ||
from twisted.python.logfile import LogFile | ||
from twisted.python.log import ILogObserver, FileLogObserver | ||
logfile = LogFile.fromFullPath(os.path.join(log_basedir, "master-bintars.log"), rotateLength=rotateLength, | ||
maxRotatedFiles=maxRotatedFiles) | ||
application.setComponent(ILogObserver, FileLogObserver(logfile).emit) | ||
|
||
m = BuildMaster(basedir, configfile, umask) | ||
m.setServiceParent(application) | ||
m.log_rotation.rotateLength = rotateLength | ||
m.log_rotation.maxRotatedFiles = maxRotatedFiles |
Oops, something went wrong.