1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# Twisted Application Configuration file.
# Use with "twistd2.4 -y <file.tac>", e.g. "twistd -noy server.tac"
from twisted.application import service
from twisted.web import server
from lp.buildmaster.manager import BuilddManager
from canonical.config import config
from canonical.launchpad.daemons import tachandler
from canonical.launchpad.scripts import execute_zcml_for_scripts
from canonical.lp import initZopeless
execute_zcml_for_scripts()
initZopeless(dbuser=config.builddmaster.dbuser)
application = service.Application('BuilddManager')
# Service that announces when the daemon is ready.
tachandler.ReadyService().setServiceParent(application)
# Service for scanning buildd slaves.
service = BuilddManager()
service.setServiceParent(application)
|