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