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