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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
# identify the component configuration used to define the site:
site-definition site.zcml
# number of bytecode instructions to execute between checks for
# interruptions (SIGINTR, thread switches):
interrupt-check-interval 200
<server>
type HTTP
address 8085
</server>
##<server>
## type FTP
## address 8021
##</server>
# non-persistent in-memory storage
<zodb>
<mappingstorage/>
</zodb>
<accesslog>
# This sets up logging to both a file (access.log) and to standard
# output (STDOUT). The "path" setting can be a relative or absolute
# filesystem path or the tokens STDOUT or STDERR.
<logfile>
path launchpad-access.log
</logfile>
</accesslog>
<eventlog>
# This sets up logging to both a file (z3.log) and to standard
# output (STDOUT). The "path" setting can be a relative or absolute
# filesystem path or the tokens STDOUT or STDERR.
<logfile>
path launchpad.log
</logfile>
</eventlog>
# Launchpad configuration. Note that we can specify multiple configurations
# in here. Currently, we have configurations named 'testrunner' (used
# by the testrunner), and 'default' (used by everything else)
#
# The section that is used can be specified by setting the LPCONFIG
# environment variable
#
<canonical default>
# DB settings must still match launchpad-sql-configure-normal.zcml
dbname launchpad_prod
#dbhost emperor
# Display tracebacks on error pages.
# IMPORTANT: Set to false on production servers!
show_tracebacks false
# This is the email address used for the Errors-To: header on
# all outgoing emails. At somepoint a bounce handler will be
# installed here to detect failing email addresses and flag them
# in the database.
bounce_address bounces@canonical.com
<launchpad>
dbuser launchpad
# Root URL to a launchpad instance, used for generating URLs
# inside of launchpad by urlparse.urljoin
root_url https://launchpad.net
errors_address launchpad-error-reports@lists.canonical.com
bugs_domain bugs.launchpad.net
</launchpad>
<librarian>
# Librarian configuration information for both client and server
dbuser librarian
upload_host macaroni.ubuntu.com
upload_port 9090
download_host macaroni.ubuntu.com
download_port 8000
download_url http://librarian.ubuntu.com/
buildd_download_url http://librarian.ubuntu.com/
<librarian_server>
# Configuration used if we are running a librarian server.
root /var/tmp/fatsam
</librarian_server>
</librarian>
<malone>
# The From address for Malone email interface errors
bugmail_error_from_address noreply@bugs.launchpad.net
</malone>
<trebuchet>
dbuser trebuchet
port 4280
<trebuchet_server>
# Configuration used if we are running a trebuchet server.
logfile /home/launchpad/dists/trebuchet.log
root /home/launchpad/dists/trebuchet
# If true, a Trebuchet server will be launched by the startup
# script
launch yes
# Should Trebuchet twistd be run with --spew for debugging
spew no
</trebuchet_server>
</trebuchet>
<zopeless>
# Configuration specific for code that is running in the Zopeless
# environment. Hopefully this section will disappear when the
# Zope and Zopeless environments grow closer.
send_email true
smtp_host localhost
smtp_port 25
</zopeless>
<gpghandler>
host keyserver.ubuntu.com
port 11371
</gpghandler>
<zeca>
# where the pre-installed key-files will be copied to (every
# initialization, see lib/zeca/ftest/harness.py)
root /var/tmp/zeca
</zeca>
<shipitexporter>
dbuser shipit
</shipitexporter>
<karmacacheupdater>
# Configuration used to run the karmacache updater.
dbuser karma
</karmacacheupdater>
<targetnamecacheupdater>
dbuser targetnamecacheupdater
</targetnamecacheupdater>
<statistician>
dbuser statistician
</statistician>
<buildsequencer>
mailproblemsto launchpad-error-reports@lists.canonical.com
launch no
logfile -
<buildsequencer_job slave_scanner>
command cronscripts/buildd-slave-scanner.py
mindelay 5
</buildsequencer_job>
<buildsequencer_job queue_builder>
command cronscripts/buildd-queue-builder.py
mindelay 10
</buildsequencer_job>
</buildsequencer>
<tickettracker>
dbuser tickettracker
</tickettracker>
<branchupdater>
dbuser importd
prefixurl http://supermirror/branches/
</branchupdater>
</canonical>
# This is the config used by the test runner.
<canonical testrunner>
dbname launchpad_ftest
show_tracebacks true
# chunkydiff may be turned off temporarily to help diagnose test
# failures, but please don't commit this setting to rocketfuel.
chunkydiff on
bounce_address bounces@canonical.com
<launchpad>
dbuser launchpad
root_url http://localhost:8086/
errors_address launchpad-error-reports@lists.canonical.com
bugs_domain bugs.launchpad.ubuntu.com
</launchpad>
<librarian>
dbuser librarian
upload_host localhost
upload_port 59090
download_host localhost
download_port 58000
download_url http://localhost:58000/
buildd_download_url http://librarian.ubuntu.com/
<librarian_server>
launch no
root /var/tmp/fatsam.test
</librarian_server>
</librarian>
<zopeless>
send_email false
</zopeless>
</canonical>
|