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