]> git.decadent.org.uk Git - dak.git/blob - config/debian/dak.conf
Unused value Version removed
[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         Origin "Debian";
199         // Description "Debian 5.0r0 Released 14 February 2009";
200         CodeName "lenny";
201         OverrideCodeName "lenny";
202         Priority "5";
203         ChangeLogBase "dists/stable/";
204   };
205
206   Proposed-Updates
207   {
208         Components
209         {
210           main;
211           contrib;
212           non-free;
213         };
214         CopyChanges "dists/proposed-updates/";
215         CopyDotDak "/srv/ftp-master.debian.org/queue/proposed-updates/";
216         CommentsDir "/srv/ftp-master.debian.org/queue/p-u-new/COMMENTS/";
217         Origin "Debian";
218         Description "Debian 5.0 Proposed Updates - Not Released";
219         CodeName "lenny-proposed-updates";
220         OverrideCodeName "lenny";
221         OverrideSuite "stable";
222         ValidTime 604800; // 7 days
223         Priority "4";
224         VersionChecks
225         {
226           MustBeNewerThan
227           {
228             OldStable;
229             Stable;
230           };
231 //        MustBeOlderThan
232 //        {
233 //          Testing;
234 //          Unstable;
235 //          Experimental;
236 //        };
237           Enhances
238           {
239             Stable;
240           };
241         };
242   };
243
244   Testing
245   {
246         Components
247         {
248           main;
249           contrib;
250           non-free;
251         };
252         Origin "Debian";
253         Description "Debian Testing distribution - Not Released";
254         CodeName "squeeze";
255         OverrideCodeName "squeeze";
256         ValidTime 604800; // 7 days
257         Priority "5";
258   };
259
260   Testing-Proposed-Updates
261   {
262         Components
263         {
264           main;
265           contrib;
266           non-free;
267         };
268         Origin "Debian";
269         Description "Debian Testing distribution updates - Not Released";
270         CodeName "squeeze-proposed-updates";
271         OverrideCodeName "squeeze";
272         OverrideSuite "testing";
273         ValidTime 604800; // 7 days
274         Priority "6";
275         VersionChecks
276         {
277           MustBeNewerThan
278           {
279             OldStable;
280             Stable;
281 //          Proposed-Updates;
282             Testing;
283           };
284           MustBeOlderThan
285           {
286             Unstable;
287             Experimental;
288           };
289           Enhances
290           {
291             Testing;
292           };
293         };
294   };
295
296   Squeeze-Volatile
297   {
298         Components
299         {
300           main;
301           contrib;
302           non-free;
303         };
304         Origin "Debian";
305         Description "Volatile Packages for Debian x.y (testing)";
306         CodeName "squeeze-volatile";
307         OverrideCodeName "squeeze";
308         OverrideSuite "testing";
309         ValidTime 604800; // 7 days
310         NotAutomatic "yes";
311         Priority "0";
312         VersionChecks
313         {
314           MustBeNewerThan
315           {
316             Stable;
317             Testing;
318           };
319           Enhances
320       {
321             Testing;
322           };
323         };
324
325   };
326
327   Unstable
328   {
329         Components
330         {
331           main;
332           contrib;
333           non-free;
334         };
335         Origin "Debian";
336         Description "Debian Unstable - Not Released";
337         CodeName "sid";
338         OverrideCodeName "sid";
339         ValidTime 604800; // 7 days
340         Priority "7";
341         VersionChecks
342         {
343           MustBeNewerThan
344           {
345             OldStable;
346             Stable;
347 //          Proposed-Updates;
348             Testing;
349             Testing-Proposed-Updates;
350           };
351         };
352   };
353
354   Experimental
355   {
356         Components
357         {
358           main;
359           contrib;
360           non-free;
361         };
362         Origin "Debian";
363         Description "Experimental packages - not released; use at your own risk.";
364         CodeName "experimental";
365         NotAutomatic "yes";
366         OverrideCodeName "sid";
367         OverrideSuite "unstable";
368         ValidTime 604800; // 7 days
369         Priority "0";
370         VersionChecks
371         {
372           MustBeNewerThan
373           {
374             OldStable;
375             Stable;
376 //          Proposed-Updates;
377             Testing;
378             Testing-Proposed-Updates;
379             Unstable;
380           };
381         };
382   };
383
384 };
385
386 SuiteMappings
387 {
388 // "propup-version oldstable-security stable testing testing-proposed-updates unstable";
389  "propup-version stable-security testing testing-proposed-updates unstable";
390  "propup-version testing-security unstable";
391  "map lenny stable";
392  "map squeeze testing";
393  "map sid unstable";
394  "map rc-buggy experimental";
395 // "map oldstable oldstable-proposed-updates";
396 // "map oldstable-security oldstable-proposed-updates";
397  "map stable proposed-updates";
398  "map stable-security proposed-updates";
399  "map stable-proposed-updates proposed-updates";
400 // "map-unreleased oldstable unstable";
401  "map-unreleased stable unstable";
402  "map-unreleased proposed-updates unstable";
403  "map testing testing-proposed-updates";
404  "map testing-security testing-proposed-updates";
405  "map-unreleased testing unstable";
406  "map-unreleased testing-proposed-updates unstable";
407 };
408
409 AutomaticByHandPackages {
410   "debian-installer-images" {
411     Source "debian-installer";
412     Section "raw-installer";
413     Extension "tar.gz";
414     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-di";
415   };
416
417   "tag-overrides" {
418     Source "tag-overrides";
419     Section "byhand";
420     Extension "tar.gz";
421     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-tag";
422   };
423
424   "task-overrides" {
425     Source "tasksel";
426     Section "byhand";
427     Extension "tar.gz";
428     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-task";
429   };
430 };
431
432 Dir
433 {
434   Root "/srv/ftp-master.debian.org/ftp/";
435   Pool "/srv/ftp-master.debian.org/ftp/pool/";
436   Templates "/srv/ftp-master.debian.org/dak/templates/";
437   PoolRoot "pool/";
438   Lists "/srv/ftp-master.debian.org/database/dists/";
439   Cache "/srv/ftp-master.debian.org/database/";
440   Log "/srv/ftp-master.debian.org/log/";
441   Lock "/srv/ftp-master.debian.org/lock";
442   Morgue "/srv/ftp-master.debian.org/morgue/";
443   MorgueReject "reject";
444   Override "/srv/ftp-master.debian.org/scripts/override/";
445   QueueBuild "/srv/incoming.debian.org/buildd/";
446   UrgencyLog "/srv/release.debian.org/britney/input/urgencies/";
447   TempPath "/srv/ftp-master.debian.org/tmp/";
448   Queue
449   {
450     Byhand "/srv/ftp-master.debian.org/queue/byhand/";
451     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
452     OldProposedUpdates "/srv/ftp-master.debian.org/queue/o-p-u-new/";
453     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
454     Done "/srv/ftp-master.debian.org/queue/done/";
455     Holding "/srv/ftp-master.debian.org/queue/holding/";
456     New "/srv/ftp-master.debian.org/queue/new/";
457     Reject "/srv/ftp-master.debian.org/queue/reject/";
458     Unchecked "/srv/ftp-master.debian.org/queue/unchecked/";
459     Newstage "/srv/ftp-master.debian.org/queue/newstage/";
460     BTSVersionTrack "/srv/ftp-master.debian.org/queue/bts_version_track/";
461     Embargoed "/does/not/exist/";
462     Unembargoed "/does/not/exist/";
463     Disembargo "/does/not/exist/";
464   };
465 };
466
467 Queue-Report
468 {
469   ReportLocations
470   {
471     822Location "/srv/ftp.debian.org/web/new.822";
472   };
473 };
474
475 DB
476 {
477   Name "projectb";
478   Host "";
479   Port 5433;
480 };
481
482 Architectures
483 {
484   source "Source";
485   all "Architecture Independent";
486   alpha "DEC Alpha";
487   hurd-i386 "Intel ia32 running the HURD";
488   hppa "HP PA RISC";
489   amd64 "AMD64";
490   arm "ARM";
491   armel "ARM eabi";
492   i386 "Intel ia32";
493   ia64 "Intel ia64";
494   mips "MIPS (Big Endian)";
495   mipsel "MIPS (Little Endian)";
496   powerpc "PowerPC";
497   s390 "IBM S/390";
498   sparc "Sun SPARC/UltraSPARC";
499   kfreebsd-i386 "GNU/kFreeBSD i386";
500   kfreebsd-amd64 "GNU/kFreeBSD amd64";
501 };
502
503 Archive
504 {
505   ftp-master
506   {
507     OriginServer "ftp-master.debian.org";
508     PrimaryMirror "ftp.debian.org";
509     Description "Master Archive for the Debian project";
510   };
511 };
512
513 Component
514 {
515   main
516   {
517         Description "Main";
518         MeetsDFSG "true";
519   };
520
521   contrib
522   {
523         Description "Contrib";
524         MeetsDFSG "true";
525   };
526
527   non-free
528   {
529         Description "Software that fails to meet the DFSG";
530         MeetsDFSG "false";
531   };
532 };
533
534 Section
535 {
536   admin;
537   cli-mono;
538   comm;
539   database;
540   debian-installer;
541   debug;
542   devel;
543   doc;
544   editors;
545   embedded;
546   electronics;
547   fonts;
548   games;
549   gnome;
550   graphics;
551   gnu-r;
552   gnustep;
553   hamradio;
554   haskell;
555   httpd;
556   interpreters;
557   java;
558   kde;
559   kernel;
560   libdevel;
561   libs;
562   lisp;
563   localization;
564   mail;
565   math;
566   misc;
567   net;
568   news;
569   ocaml;
570   oldlibs;
571   otherosfs;
572   perl;
573   php;
574   python;
575   ruby;
576   science;
577   shells;
578   sound;
579   tex;
580   text;
581   utils;
582   web;
583   vcs;
584   video;
585   x11;
586   xfce;
587   zope;
588 };
589
590 Priority
591 {
592   required 1;
593   important 2;
594   standard 3;
595   optional 4;
596   extra 5;
597   source 0; // i.e. unused
598 };
599
600 OverrideType
601 {
602   deb;
603   udeb;
604   dsc;
605 };
606
607 Location
608 {
609
610   // Pool locations on ftp-master.debian.org
611   /srv/ftp-master.debian.org/ftp/pool/
612     {
613       Archive "ftp-master";
614       Type "pool";
615     };
616
617 };
618
619 Urgency
620 {
621   Default "low";
622   Valid
623   {
624     low;
625     medium;
626     high;
627     emergency;
628     critical;
629   };
630 };
631
632 Contents
633 {
634   Header "contents";
635   Root "/srv/ftp-master.debian.org/test/";
636 }
637
638 Common
639 {
640   // The default number of threads for multithreading parts of dak:
641   ThreadCount 16;
642 }
643
644 Changelogs
645 {
646   Testing "/srv/release.debian.org/tools/trille/current-testing";
647   Britney "/srv/ftp-master.debian.org/ftp/dists/testing/ChangeLog";
648   Export "/srv/ftp-master.debian.org/export/changelogs";
649 }