]> git.decadent.org.uk Git - dak.git/blob - config/backports/dak.conf
Merge branch 'master' into bpo
[dak.git] / config / backports / dak.conf
1 Dinstall
2 {
3    // Both need to be defined at the moment, but they can point to the
4    // same file.
5    GPGKeyring {
6       "/srv/backports-master.debian.org/keyrings/keyring.gpg";
7    };
8    // To sign the release files. Adjust the keyid!
9    // Note: Key must be without a passphrase or it wont work automagically!
10    SigningKeyring "/srv/backports-master.debian.org/s3kr1t/dot-gnupg/secring.gpg";
11    SigningPubKeyring "/srv/backports-master.debian.org/s3kr1t/dot-gnupg/pubring.gpg";
12    SigningKeyIds "16BA136C";
13    SendmailCommand "/usr/sbin/sendmail -odq -oi -t";
14    MyEmailAddress "backports.debian.org archive Installer <installer@backports.debian.org>";
15    MyAdminAddress "ftpmaster@backports.debian.org";
16    MyHost "backports.debian.org";  // used for generating user@my_host addresses in e.g. manual_reject()
17    MyDistribution "backports.debian.org archive"; // Used in emails
18    // Alicia and melanie can use it
19    BugServer "bugs.debian.org";
20    // melanie uses the packages server.
21    // PackagesServer "packages.test.backports.org";
22    // If defined then the package@this.server gets a copy of most of the
23    // actions related to the package. For an example look at
24    // packages.qa.debian.org
25    // TrackingServer "packages.qa.test.backports.org";
26    LockFile "/srv/backports-master.debian.org/lock/dinstall.lock";
27    // If defined this address gets a bcc of all mails.
28    // FIXME: Einrichten wenn das hier produktiv geht!
29    Bcc "backports-archive@lists.backports.org";
30    GroupOverrideFilename "override.group-maint";
31    FutureTimeTravelGrace 28800; // 8 hours
32    PastCutoffYear "1984";
33    SkipTime 300;
34    // If defined then mails to close bugs are sent to the bugserver.
35    CloseBugs "false";
36    OverrideDisparityCheck "true";
37    DefaultSuite "etch-backports";
38    Reject
39    {
40      NoSourceOnly "true";
41      ReleaseTransitions "/srv/backports-master.debian.org/hints/transitions.yaml";
42    };
43    // If set, only send mails to addresses listed there.
44    MailWhiteList "/srv/backports-master.debian.org/dak/config/backports/mail-whitelist";
45 };
46
47 Generate-Index-Diffs
48 {
49    Options
50    {
51      TempDir "/srv/backports-master.debian.org/tiffani";
52      MaxDiffs { Default 50; };
53    };
54 };
55
56 Override
57 {
58    MyEmailAddress "backports.debian.org archive FTP Masters <ftpmaster@backports.debian.org>";
59 };
60
61 Add-User
62 {
63 // Should we sent a mail to newly added users?
64   SendEmail "true";
65
66 // Should we create an account so they can login?
67 // Account will be created with the defaults from adduser, so adjust
68 // it's configuration to fit your needs.
69 // NOTE: This requires that your dak user has a sudo entry, allowing
70 // to run /usr/sbin/useradd!
71   CreateAccount "false";
72
73 // Note: This is a comma separated list of additional groupnames to
74 // which uma should add the user. NO spaces between the groupnames or
75 // useradd will die.
76 // Disable it if you dont want or need that feature.
77   GID "debuser";
78
79 };
80
81 Check-Overrides
82 {
83   OverrideSuites
84   {
85     lenny-backports
86     {
87       Process "1";
88 //      OriginSuite "Unstable";
89     };
90
91     etch-backports
92     {
93       Process "1";
94 //      OriginSuite "Unstable";
95     };
96
97 //    Unstable
98 //    {
99 //    Process "0";
100 //  };
101   };
102 };
103
104
105 Import-Users-From-Passwd
106 {
107   // The Primary GID of your users. Using uma it is the gid from group users.
108   ValidGID "1001";
109   // Comma separated list of users who are in Postgres but not the passwd file
110   KnownPostgres "postgres,katie";
111 };
112
113 Clean-Queues
114 {
115   Options
116   {
117     Days 14;
118    };
119  MorgueSubDir "queues";
120 };
121
122 Control-Overrides
123 {
124   Options
125   {
126     Component "main";
127     Suite "etch-backports";
128     Type "deb";
129    };
130
131  ComponentPosition "prefix"; // Whether the component is prepended or appended to the section name
132 };
133
134 Rm
135 {
136   Options
137   {
138     Suite "etch-backports";
139    };
140
141    MyEmailAddress "backports.debian.org archive Maintenance <ftpmaster@backports.debian.org>";
142    LogFile "/srv/backports-master.debian.org/ftp/removals.txt";
143 };
144
145 Import-Archive
146 {
147   ExportDir "/srv/backports-master.debian.org/dak/import-archive-files/";
148 };
149
150 Clean-Suites
151 {
152   // How long (in seconds) dead packages are left before being killed
153   StayOfExecution 1209600; // 14 days
154   AcceptedAutoBuildStayOfExecution 86400; // 24 hours
155   MorgueSubDir "pool";
156 };
157
158 Process-New
159 {
160   AcceptedLockFile "/srv/backports-master.debian.org/lock/unchecked.lock";
161 };
162
163 Suite
164 {
165   lenny-backports
166   {
167         Components
168         {
169           main;
170           contrib;
171           non-free;
172         };
173
174         Announce "backports-changes@lists.backports.org";
175         Origin "backports.debian.org archive";
176         Description "Backports for the Lenny Distribution";
177         CodeName "lenny-backports";
178         OverrideCodeName "lenny-backports";
179         Priority "7";
180         NotAutomatic "yes";
181   };
182
183   etch-backports
184   {
185         Components
186         {
187           main;
188           contrib;
189           non-free;
190         };
191         Announce "backports-changes@lists.backports.org";
192         Origin "backports.debian.org archive";
193         Description "Backports for the Etch Distribution";
194         CodeName "etch-backports";
195         OverrideCodeName "etch-backports";
196         Priority "7";
197         NotAutomatic "yes";
198   };
199
200 };
201
202 Dir
203 {
204   Root "/srv/backports-master.debian.org/ftp/";
205   Pool "/srv/backports-master.debian.org/ftp/pool/";
206   Templates "/srv/backports-master.debian.org/dak/templates/";
207   PoolRoot "pool/";
208   Lists "/srv/backports-master.debian.org/database/dists/";
209   Log "/srv/backports-master.debian.org/log/";
210   Morgue "/srv/backports-master.debian.org/morgue/";
211   MorgueReject "reject";
212   Lock "/srv/backports-master.debian.org/lock";
213   Override "/srv/backports-master.debian.org/scripts/override/";
214   UrgencyLog "/srv/backports-master.debian.org/testing/urgencies/";
215   Queue
216   {
217     Accepted "/srv/backports-master.debian.org/queue/accepted/";
218     Byhand "/srv/backports-master.debian.org/queue/byhand/";
219     Done "/srv/backports-master.debian.org/queue/done/";
220     Holding "/srv/backports-master.debian.org/queue/holding/";
221     New "/srv/backports-master.debian.org/queue/new/";
222     ProposedUpdates "/srv/backports-master.debian.org/queue/p-u-new/";
223     Reject "/srv/backports-master.debian.org/queue/reject/";
224     Unchecked "/srv/backports-master.debian.org/queue/unchecked/";
225     BTSVersionTrack "/srv/backports-master.debian.org/queue/bts_version_track/";
226     Embargoed "/srv/backports-master.debian.org/queue/Embargoed/";
227     Unembargoed "/srv/backports-master.debian.org/queue/Unembargoed/";
228     OldProposedUpdates "/srv/backports-master.debian.org/queue/Unembargoed/";
229   };
230 };
231
232 DB
233 {
234   Name "projectb";
235   Host "";
236   Port -1;
237 };
238
239 SuiteMappings
240 {
241  "propup-version stable-security testing";
242  "propup-version testing-security unstable";
243 // "map stable proposed-updates";
244  "map lenny lenny-backports";
245  "map lenny-bpo lenny-backports";
246  "map etch etch-backports";
247 // formi mag des nit
248 // "map stable etch-backports";
249  "map etch-bpo etch-backports";
250 // "map stable-security proposed-updates";
251 // "map-unreleased stable unstable";
252 // "map-unreleased proposed-updates unstable";
253 // "map testing testing-proposed-updates";
254 // "map testing-security testing-proposed-updates";
255 // "map-unreleased testing unstable";
256 // "map-unreleased testing-proposed-updates unstable";
257 };
258
259 Architectures
260 {
261   source "Source";
262   all "Architecture Independent";
263   alpha "DEC Alpha";
264   amd64 "AMD x86_64 (AMD64)";
265   hurd-i386 "Intel ia32 running the HURD";
266   hppa "HP PA RISC";
267   arm "ARM";
268   armel "ARM EABI";
269   i386 "Intel ia32";
270   ia64 "Intel ia64";
271   m68k "Motorola Mc680x0";
272   mips "MIPS (Big Endian)";
273   mipsel "MIPS (Little Endian)";
274   powerpc "PowerPC";
275   s390 "IBM S/390";
276   sh "Hitatchi SuperH";
277   sparc "Sun SPARC/UltraSPARC";
278 };
279
280 Archive
281 {
282   backports
283   {
284     OriginServer "backports.debian.org";
285     PrimaryMirror "backports.debian.org";
286     Description "Master Archive for backports.debian.org archive";
287   };
288 };
289
290 Component
291 {
292   main
293   {
294         Description "Main";
295         MeetsDFSG "true";
296   };
297
298   contrib
299   {
300         Description "Contrib";
301         MeetsDFSG "true";
302   };
303
304   non-free
305   {
306         Description "Software that fails to meet the DFSG";
307         MeetsDFSG "false";
308   };
309
310 };
311
312 Section
313 {
314   admin;
315   cli-mono;
316   comm;
317   database;
318   debian-installer;
319   debug;
320   devel;
321   doc;
322   editors;
323   embedded;
324   electronics;
325   fonts;
326   games;
327   gnome;
328   graphics;
329   gnu-r;
330   gnustep;
331   hamradio;
332   haskell;
333   httpd;
334   interpreters;
335   java;
336   kde;
337   kernel;
338   libdevel;
339   libs;
340   lisp;
341   localization;
342   mail;
343   math;
344   misc;
345   net;
346   news;
347   ocaml;
348   oldlibs;
349   otherosfs;
350   perl;
351   php;
352   python;
353   ruby;
354   science;
355   shells;
356   sound;
357   tex;
358   text;
359   utils;
360   web;
361   vcs;
362   video;
363   x11;
364   xfce;
365   zope;
366 };
367
368 Priority
369 {
370   required 1;
371   important 2;
372   standard 3;
373   optional 4;
374   extra 5;
375   source 0; // i.e. unused
376 };
377
378 OverrideType
379 {
380   deb;
381   udeb;
382   dsc;
383 };
384
385 Location
386 {
387   // Pool locations on backports.debian.org
388   /srv/backports-master.debian.org/ftp/pool/
389     {
390       Archive "backports";
391       Type "pool";
392     };
393
394 };
395
396 Urgency
397 {
398   Default "low";
399   Valid
400   {
401     low;
402     medium;
403     high;
404     emergency;
405     critical;
406   };
407 };