]> git.decadent.org.uk Git - dak.git/blob - config/debian/dak.conf
Remove codename from dak.conf
[dak.git] / config / debian / dak.conf
1 Dinstall
2 {
3    GPGKeyring {
4       "/srv/keyring.debian.org/keyrings/debian-keyring.gpg";
5       "/srv/keyring.debian.org/keyrings/debian-maintainers.gpg";
6    };
7    SigningKeyring "/srv/ftp-master.debian.org/s3kr1t/dot-gnupg/secring.gpg";
8    SigningPubKeyring "/srv/ftp-master.debian.org/s3kr1t/dot-gnupg/pubring.gpg";
9    SigningKeyIds "55BE302B";
10 //   SendmailCommand "/usr/sbin/sendmail -odq -oi -t -f envelope@ftp-master.debian.org";
11    SendmailCommand "/usr/sbin/sendmail -oi -t -f envelope@ftp-master.debian.org";
12    MyEmailAddress "Archive Administrator <installer@ftp-master.debian.org>";
13    MyAdminAddress "ftpmaster@debian.org";
14    MyHost "debian.org";  // used for generating user@my_host addresses in e.g. manual_reject()
15    MyDistribution "Debian"; // Used in emails
16    BugServer "bugs.debian.org";
17    PackagesServer "packages.debian.org";
18    TrackingServer "packages.qa.debian.org";
19    LockFile "/srv/ftp-master.debian.org/lock/dinstall.lock";
20    Bcc "archive@ftp-master.debian.org";
21    FutureTimeTravelGrace 28800; // 8 hours
22    PastCutoffYear "1984";
23    SkipTime 300;
24    BXANotify "true";
25    CloseBugs "true";
26    OverrideDisparityCheck "true";
27    DefaultSuite "unstable";
28    LintianTags "/srv/ftp-master.debian.org/dak/config/debian/lintian.tags";
29    QueueBuildSuites
30    {
31      unstable;
32    };
33    Reject
34    {
35      NoSourceOnly "true";
36      ReleaseTransitions "/srv/ftp.debian.org/web/transitions.yaml";
37    };
38    // if you setup an own dak repository and want to upload Debian packages you most possibly want
39    // to set the following option to a real path/filename and then enter those mail addresses that
40    // you want to be able to receive mails generated by your dak installation. This avoids spamming
41    // the real maintainers of a package you upload with mail.
42    // format of entries: one entry per line. Either an email address directly, or a regular expression,
43    // prefixed by "RE:". Examples: "jane.doe@domain.com" or "RE:jane[^@]@domain.com", where the first will
44    // only allow to mail jane.doe@domain.com while the second will mail all of jane*@domain.com
45    //  MailWhiteList "/some/path/to/a/file";
46 };
47
48 Transitions
49 {
50    Notifications "debian-devel@lists.debian.org";
51 };
52
53 Generate-Index-Diffs
54 {
55    Options
56    {
57      TempDir "/srv/ftp-master.debian.org/tiffani";
58      MaxDiffs { Default 14; };
59    };
60 };
61
62 Override
63 {
64    MyEmailAddress "Debian FTP Masters <ftpmaster@ftp-master.debian.org>";
65 };
66
67 Show-New
68 {
69   HTMLPath "/srv/ftp.debian.org/web/new/";
70 }
71
72 Show-Deferred
73 {
74   LinkPath "/srv/ftp.debian.org/web/deferred/";
75   DeferredQueue "/srv/upload.debian.org/DEFERRED/";
76 }
77
78 Import-Users-From-Passwd
79 {
80   ValidGID "800";
81   // Comma separated list of users who are in Postgres but not the passwd file
82   KnownPostgres "postgres,dak,katie,release,qa,www-data,guest";
83 };
84
85 Clean-Queues
86 {
87   Options
88   {
89     Days 14;
90    };
91  MorgueSubDir "queues";
92 };
93
94 Control-Overrides
95 {
96   Options
97   {
98     Component "main";
99     Suite "unstable";
100     Type "deb";
101    };
102
103  ComponentPosition "prefix"; // Whether the component is prepended or appended to the section name
104 };
105
106 Rm
107 {
108   Options
109   {
110     Suite "unstable";
111    };
112
113    MyEmailAddress "Debian Archive Maintenance <ftpmaster@ftp-master.debian.org>";
114    LogFile "/srv/ftp.debian.org/web/removals.txt";
115    LogFile822 "/srv/ftp.debian.org/web/removals.822";
116    Bcc "removed-packages@qa.debian.org";
117 };
118
119 Import-Archive
120 {
121   ExportDir "/srv/ftp-master.debian.org/dak/import-archive-files/";
122 };
123
124 Import-Keyring
125 {
126   /srv/keyring.debian.org/keyrings/debian-maintainers.gpg
127     {
128       Debian-Maintainer "true";
129     };
130 };
131
132 Reject-Proposed-Updates
133 {
134    StableRejector "the Stable Release Team";
135    StableMail "debian-release@lists.debian.org";
136    MoreInfoURL "http://release.debian.org/stable/4.0/4.0r7/";
137 };
138
139 Import-LDAP-Fingerprints
140 {
141   LDAPDn "ou=users,dc=debian,dc=org";
142   LDAPServer "db.debian.org";
143   ExtraKeyrings
144   {
145     "/srv/keyring.debian.org/keyrings/removed-keys.pgp";
146     "/srv/keyring.debian.org/keyrings/removed-keys.gpg";
147     "/srv/keyring.debian.org/keyrings/extra-keys.pgp";
148   };
149   KeyServer "wwwkeys.eu.pgp.net";
150 };
151
152 Clean-Suites
153 {
154   // How long (in seconds) dead packages are left before being killed
155   StayOfExecution 129600; // 1.5 days
156   QueueBuildStayOfExecution 86400; // 24 hours
157   MorgueSubDir "pool";
158 };
159
160 Process-New
161 {
162   DinstallLockFile "/srv/ftp-master.debian.org/lock/processnew.lock";
163   LockDir "/srv/ftp-master.debian.org/lock/new/";
164 };
165
166 Check-Overrides
167 {
168   OverrideSuites
169   {
170     Stable
171     {
172       Process "0";
173     };
174
175     Testing
176     {
177       Process "1";
178       OriginSuite "Unstable";
179     };
180
181     Unstable
182     {
183       Process "1";
184     };
185   };
186 };
187
188 Suite
189 {
190   Stable
191   {
192         Components
193         {
194           main;
195           contrib;
196           non-free;
197         };
198         OverrideCodeName "lenny";
199         Priority "5";
200         ChangeLogBase "dists/stable/";
201   };
202
203   Proposed-Updates
204   {
205         Components
206         {
207           main;
208           contrib;
209           non-free;
210         };
211         CopyChanges "dists/proposed-updates/";
212         CopyDotDak "/srv/ftp-master.debian.org/queue/proposed-updates/";
213         CommentsDir "/srv/ftp-master.debian.org/queue/p-u-new/COMMENTS/";
214         OverrideCodeName "lenny";
215         OverrideSuite "stable";
216         ValidTime 604800; // 7 days
217         Priority "4";
218         VersionChecks
219         {
220           MustBeNewerThan
221           {
222             OldStable;
223             Stable;
224           };
225 //        MustBeOlderThan
226 //        {
227 //          Testing;
228 //          Unstable;
229 //          Experimental;
230 //        };
231           Enhances
232           {
233             Stable;
234           };
235         };
236   };
237
238   Testing
239   {
240         Components
241         {
242           main;
243           contrib;
244           non-free;
245         };
246         OverrideCodeName "squeeze";
247         ValidTime 604800; // 7 days
248         Priority "5";
249   };
250
251   Testing-Proposed-Updates
252   {
253         Components
254         {
255           main;
256           contrib;
257           non-free;
258         };
259         OverrideCodeName "squeeze";
260         OverrideSuite "testing";
261         ValidTime 604800; // 7 days
262         Priority "6";
263         VersionChecks
264         {
265           MustBeNewerThan
266           {
267             OldStable;
268             Stable;
269 //          Proposed-Updates;
270             Testing;
271           };
272           MustBeOlderThan
273           {
274             Unstable;
275             Experimental;
276           };
277           Enhances
278           {
279             Testing;
280           };
281         };
282   };
283
284   Squeeze-Volatile
285   {
286         Components
287         {
288           main;
289           contrib;
290           non-free;
291         };
292         OverrideCodeName "squeeze";
293         OverrideSuite "testing";
294         ValidTime 604800; // 7 days
295         NotAutomatic "yes";
296         Priority "0";
297         VersionChecks
298         {
299           MustBeNewerThan
300           {
301             Stable;
302             Testing;
303           };
304           Enhances
305       {
306             Testing;
307           };
308         };
309
310   };
311
312   Unstable
313   {
314         Components
315         {
316           main;
317           contrib;
318           non-free;
319         };
320         OverrideCodeName "sid";
321         ValidTime 604800; // 7 days
322         Priority "7";
323         VersionChecks
324         {
325           MustBeNewerThan
326           {
327             OldStable;
328             Stable;
329 //          Proposed-Updates;
330             Testing;
331             Testing-Proposed-Updates;
332           };
333         };
334   };
335
336   Experimental
337   {
338         Components
339         {
340           main;
341           contrib;
342           non-free;
343         };
344         NotAutomatic "yes";
345         OverrideCodeName "sid";
346         OverrideSuite "unstable";
347         ValidTime 604800; // 7 days
348         Priority "0";
349         VersionChecks
350         {
351           MustBeNewerThan
352           {
353             OldStable;
354             Stable;
355 //          Proposed-Updates;
356             Testing;
357             Testing-Proposed-Updates;
358             Unstable;
359           };
360         };
361   };
362
363 };
364
365 SuiteMappings
366 {
367 // "propup-version oldstable-security stable testing testing-proposed-updates unstable";
368  "propup-version stable-security testing testing-proposed-updates unstable";
369  "propup-version testing-security unstable";
370  "map lenny stable";
371  "map squeeze testing";
372  "map sid unstable";
373  "map rc-buggy experimental";
374 // "map oldstable oldstable-proposed-updates";
375 // "map oldstable-security oldstable-proposed-updates";
376  "map stable proposed-updates";
377  "map stable-security proposed-updates";
378  "map stable-proposed-updates proposed-updates";
379 // "map-unreleased oldstable unstable";
380  "map-unreleased stable unstable";
381  "map-unreleased proposed-updates unstable";
382  "map testing testing-proposed-updates";
383  "map testing-security testing-proposed-updates";
384  "map-unreleased testing unstable";
385  "map-unreleased testing-proposed-updates unstable";
386 };
387
388 AutomaticByHandPackages {
389   "debian-installer-images" {
390     Source "debian-installer";
391     Section "raw-installer";
392     Extension "tar.gz";
393     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-di";
394   };
395
396   "tag-overrides" {
397     Source "tag-overrides";
398     Section "byhand";
399     Extension "tar.gz";
400     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-tag";
401   };
402
403   "task-overrides" {
404     Source "tasksel";
405     Section "byhand";
406     Extension "tar.gz";
407     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-task";
408   };
409 };
410
411 Dir
412 {
413   Root "/srv/ftp-master.debian.org/ftp/";
414   Pool "/srv/ftp-master.debian.org/ftp/pool/";
415   Templates "/srv/ftp-master.debian.org/dak/templates/";
416   PoolRoot "pool/";
417   Lists "/srv/ftp-master.debian.org/database/dists/";
418   Cache "/srv/ftp-master.debian.org/database/";
419   Log "/srv/ftp-master.debian.org/log/";
420   Lock "/srv/ftp-master.debian.org/lock";
421   Morgue "/srv/ftp-master.debian.org/morgue/";
422   MorgueReject "reject";
423   Override "/srv/ftp-master.debian.org/scripts/override/";
424   QueueBuild "/srv/incoming.debian.org/buildd/";
425   UrgencyLog "/srv/release.debian.org/britney/input/urgencies/";
426   TempPath "/srv/ftp-master.debian.org/tmp/";
427   Queue
428   {
429     Byhand "/srv/ftp-master.debian.org/queue/byhand/";
430     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
431     OldProposedUpdates "/srv/ftp-master.debian.org/queue/o-p-u-new/";
432     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
433     Done "/srv/ftp-master.debian.org/queue/done/";
434     Holding "/srv/ftp-master.debian.org/queue/holding/";
435     New "/srv/ftp-master.debian.org/queue/new/";
436     Reject "/srv/ftp-master.debian.org/queue/reject/";
437     Unchecked "/srv/ftp-master.debian.org/queue/unchecked/";
438     Newstage "/srv/ftp-master.debian.org/queue/newstage/";
439     BTSVersionTrack "/srv/ftp-master.debian.org/queue/bts_version_track/";
440     Embargoed "/does/not/exist/";
441     Unembargoed "/does/not/exist/";
442     Disembargo "/does/not/exist/";
443   };
444 };
445
446 Queue-Report
447 {
448   ReportLocations
449   {
450     822Location "/srv/ftp.debian.org/web/new.822";
451   };
452 };
453
454 DB
455 {
456   Name "projectb";
457   Host "";
458   Port 5433;
459 };
460
461 Architectures
462 {
463   source "Source";
464   all "Architecture Independent";
465   alpha "DEC Alpha";
466   hurd-i386 "Intel ia32 running the HURD";
467   hppa "HP PA RISC";
468   amd64 "AMD64";
469   arm "ARM";
470   armel "ARM eabi";
471   i386 "Intel ia32";
472   ia64 "Intel ia64";
473   mips "MIPS (Big Endian)";
474   mipsel "MIPS (Little Endian)";
475   powerpc "PowerPC";
476   s390 "IBM S/390";
477   sparc "Sun SPARC/UltraSPARC";
478   kfreebsd-i386 "GNU/kFreeBSD i386";
479   kfreebsd-amd64 "GNU/kFreeBSD amd64";
480 };
481
482 Archive
483 {
484   ftp-master
485   {
486     OriginServer "ftp-master.debian.org";
487     PrimaryMirror "ftp.debian.org";
488     Description "Master Archive for the Debian project";
489   };
490 };
491
492 Component
493 {
494   main
495   {
496         Description "Main";
497         MeetsDFSG "true";
498   };
499
500   contrib
501   {
502         Description "Contrib";
503         MeetsDFSG "true";
504   };
505
506   non-free
507   {
508         Description "Software that fails to meet the DFSG";
509         MeetsDFSG "false";
510   };
511 };
512
513 Section
514 {
515   admin;
516   cli-mono;
517   comm;
518   database;
519   debian-installer;
520   debug;
521   devel;
522   doc;
523   editors;
524   embedded;
525   electronics;
526   fonts;
527   games;
528   gnome;
529   graphics;
530   gnu-r;
531   gnustep;
532   hamradio;
533   haskell;
534   httpd;
535   interpreters;
536   java;
537   kde;
538   kernel;
539   libdevel;
540   libs;
541   lisp;
542   localization;
543   mail;
544   math;
545   misc;
546   net;
547   news;
548   ocaml;
549   oldlibs;
550   otherosfs;
551   perl;
552   php;
553   python;
554   ruby;
555   science;
556   shells;
557   sound;
558   tex;
559   text;
560   utils;
561   web;
562   vcs;
563   video;
564   x11;
565   xfce;
566   zope;
567 };
568
569 Priority
570 {
571   required 1;
572   important 2;
573   standard 3;
574   optional 4;
575   extra 5;
576   source 0; // i.e. unused
577 };
578
579 OverrideType
580 {
581   deb;
582   udeb;
583   dsc;
584 };
585
586 Location
587 {
588
589   // Pool locations on ftp-master.debian.org
590   /srv/ftp-master.debian.org/ftp/pool/
591     {
592       Archive "ftp-master";
593       Type "pool";
594     };
595
596 };
597
598 Urgency
599 {
600   Default "low";
601   Valid
602   {
603     low;
604     medium;
605     high;
606     emergency;
607     critical;
608   };
609 };
610
611 Contents
612 {
613   Header "contents";
614   Root "/srv/ftp-master.debian.org/test/";
615 }
616
617 Common
618 {
619   // The default number of threads for multithreading parts of dak:
620   ThreadCount 16;
621 }
622
623 Changelogs
624 {
625   Testing "/srv/release.debian.org/tools/trille/current-testing";
626   Britney "/srv/ftp-master.debian.org/ftp/dists/testing/ChangeLog";
627   Export "/srv/ftp-master.debian.org/export/changelogs";
628 }