]> git.decadent.org.uk Git - dak.git/blob - config/debian/dak.conf
remove sh, currently unused
[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-keyring.pgp";
6       "/srv/ftp.debian.org/keyrings/debian-maintainers.gpg";
7    };
8    SigningKeyring "/srv/ftp.debian.org/s3kr1t/dot-gnupg/secring.gpg";
9    SigningPubKeyring "/srv/ftp.debian.org/s3kr1t/dot-gnupg/pubring.gpg";
10    SigningKeyIds "55BE302B";
11    SendmailCommand "/usr/sbin/sendmail -odq -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.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    UserExtensions "/srv/ftp.debian.org/dak/config/debian/extensions.py";
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    TempPath "/srv/ftp.debian.org/tmp/";
52 };
53
54 Generate-Index-Diffs
55 {
56    Options
57    {
58      TempDir "/srv/ftp.debian.org/tiffani";
59      MaxDiffs { Default 14; };
60    };
61 };
62
63 Override
64 {
65    MyEmailAddress "Debian FTP Masters <ftpmaster@ftp-master.debian.org>";
66 };
67
68 Mirror-Split
69 {
70   FTPPath "/srv/ftp.debian.org/ftp";
71   TreeRootPath "/srv/ftp.debian.org/scratch/dsilvers/treeroots";
72   TreeDatabasePath "/srv/ftp.debian.org/scratch/dsilvers/treedbs";
73   BasicTrees { alpha; arm; hppa; hurd-i386; i386; ia64; mips; mipsel; powerpc; s390; sparc; m68k };
74   CombinationTrees
75   {
76     popular { i386; powerpc; all; source; };
77     source { source; };
78     everything { source; all; alpha; arm; hppa; hurd-i386; i386; ia64; mips; mipsel; powerpc; s390; sparc; m68k; };
79   };
80 };
81
82 Show-New
83 {
84   HTMLPath "/srv/ftp.debian.org/web/new/";
85 }
86
87 Show-Deferred
88 {
89   LinkPath "/srv/ftp.debian.org/web/deferred/";
90   DeferredQueue "/srv/queued/DEFERRED/";
91 }
92
93 Import-Users-From-Passwd
94 {
95   ValidGID "800";
96   // Comma separated list of users who are in Postgres but not the passwd file
97   KnownPostgres "postgres,dak,katie,release";
98 };
99
100 Clean-Queues
101 {
102   Options
103   {
104     Days 14;
105    };
106  MorgueSubDir "queues";
107 };
108
109 Control-Overrides
110 {
111   Options
112   {
113     Component "main";
114     Suite "unstable";
115     Type "deb";
116    };
117
118  ComponentPosition "prefix"; // Whether the component is prepended or appended to the section name
119 };
120
121 Rm
122 {
123   Options
124   {
125     Suite "unstable";
126    };
127
128    MyEmailAddress "Debian Archive Maintenance <ftpmaster@ftp-master.debian.org>";
129    LogFile "/srv/ftp.debian.org/web/removals.txt";
130    Bcc "removed-packages@qa.debian.org";
131 };
132
133 Import-Archive
134 {
135   ExportDir "/srv/ftp.debian.org/dak/import-archive-files/";
136 };
137
138 Import-Keyring
139 {
140   /srv/ftp.debian.org/keyrings/debian-maintainers.gpg
141     {
142       Debian-Maintainer "true";
143     };
144 };
145
146 Reject-Proposed-Updates
147 {
148    StableRejector "the Stable Release Team";
149    StableMail "debian-release@lists.debian.org";
150    MoreInfoURL "http://release.debian.org/stable/4.0/4.0r7/";
151 };
152
153 Import-LDAP-Fingerprints
154 {
155   LDAPDn "ou=users,dc=debian,dc=org";
156   LDAPServer "db.debian.org";
157   ExtraKeyrings
158   {
159     "/srv/keyring.debian.org/keyrings/removed-keys.pgp";
160     "/srv/keyring.debian.org/keyrings/removed-keys.gpg";
161     "/srv/keyring.debian.org/keyrings/extra-keys.pgp";
162   };
163   KeyServer "wwwkeys.eu.pgp.net";
164 };
165
166 Clean-Suites
167 {
168   // How long (in seconds) dead packages are left before being killed
169   StayOfExecution 129600; // 1.5 days
170   QueueBuildStayOfExecution 86400; // 24 hours
171   MorgueSubDir "pool";
172 };
173
174 Process-New
175 {
176   DinstallLockFile "/srv/ftp.debian.org/lock/processnew.lock";
177   LockDir "/srv/ftp.debian.org/lock/new/";
178 };
179
180 Check-Overrides
181 {
182   OverrideSuites
183   {
184     Stable
185     {
186       Process "0";
187     };
188
189     Testing
190     {
191       Process "1";
192       OriginSuite "Unstable";
193     };
194
195     Unstable
196     {
197       Process "1";
198     };
199   };
200 };
201
202 Suite
203 {
204   OldStable
205   {
206         Components
207         {
208           main;
209           contrib;
210           non-free;
211         };
212         Announce "debian-changes@lists.debian.org";
213         // Version "4.0r1";
214         Origin "Debian";
215         // Description "Debian 4.0r1 Released 15 August 2007";
216         CodeName "etch";
217         OverrideCodeName "etch";
218         Priority "5";
219         ChangeLogBase "dists/oldstable/";
220         UdebComponents
221         {
222           main;
223           non-free;
224         };
225   };
226
227   Oldstable-Proposed-Updates
228   {
229         Components
230         {
231           main;
232           contrib;
233           non-free;
234         };
235         Announce "debian-changes@lists.debian.org";
236         CopyChanges "dists/oldstable-proposed-updates/";
237         CopyDotDak "/srv/ftp.debian.org/queue/oldstable-proposed-updates/";
238         CommentsDir "/srv/ftp.debian.org/queue/o-p-u-new/COMMENTS/";
239         Version "4.0-updates";
240         Origin "Debian";
241         Description "Debian 4.0 Proposed Updates - Not Released";
242         CodeName "etch-proposed-updates";
243         OverrideCodeName "etch";
244         OverrideSuite "oldstable";
245         ValidTime 604800; // 7 days
246         Priority "4";
247         VersionChecks
248         {
249           MustBeNewerThan
250           {
251             OldStable;
252           };
253           MustBeOlderThan
254           {
255             Stable;
256             Testing;
257             Unstable;
258             Experimental;
259           };
260           Enhances
261           {
262             OldStable;
263           };
264         };
265         UdebComponents
266         {
267           main;
268         };
269   };
270
271   Stable
272   {
273         Components
274         {
275           main;
276           contrib;
277           non-free;
278         };
279         Announce "debian-changes@lists.debian.org";
280         // Version "5.0r0";
281         Origin "Debian";
282         // Description "Debian 5.0r0 Released 14 February 2009";
283         CodeName "lenny";
284         OverrideCodeName "lenny";
285         Priority "5";
286         ChangeLogBase "dists/stable/";
287         UdebComponents
288         {
289           main;
290           non-free;
291         };
292   };
293
294   Proposed-Updates
295   {
296         Components
297         {
298           main;
299           contrib;
300           non-free;
301         };
302         Announce "debian-changes@lists.debian.org";
303         CopyChanges "dists/proposed-updates/";
304         CopyDotDak "/srv/ftp.debian.org/queue/proposed-updates/";
305         CommentsDir "/srv/ftp.debian.org/queue/p-u-new/COMMENTS/";
306         Version "5.0-updates";
307         Origin "Debian";
308         Description "Debian 5.0 Proposed Updates - Not Released";
309         CodeName "lenny-proposed-updates";
310         OverrideCodeName "lenny";
311         OverrideSuite "stable";
312         ValidTime 604800; // 7 days
313         Priority "4";
314         VersionChecks
315         {
316           MustBeNewerThan
317           {
318             OldStable;
319             Stable;
320           };
321 //        MustBeOlderThan
322 //        {
323 //          Testing;
324 //          Unstable;
325 //          Experimental;
326 //        };
327           Enhances
328           {
329             Stable;
330           };
331         };
332         UdebComponents
333         {
334           main;
335           non-free;
336         };
337   };
338
339   Testing
340   {
341         Components
342         {
343           main;
344           contrib;
345           non-free;
346         };
347         Announce "debian-testing-changes@lists.debian.org";
348         Origin "Debian";
349         Description "Debian Testing distribution - Not Released";
350         CodeName "squeeze";
351         OverrideCodeName "squeeze";
352         ValidTime 604800; // 7 days
353         Priority "5";
354         UdebComponents
355         {
356           main;
357           non-free;
358         };
359   };
360
361   Testing-Proposed-Updates
362   {
363         Components
364         {
365           main;
366           contrib;
367           non-free;
368         };
369         Announce "debian-testing-changes@lists.debian.org";
370         Origin "Debian";
371         Description "Debian Testing distribution updates - Not Released";
372         CodeName "squeeze-proposed-updates";
373         OverrideCodeName "squeeze";
374         OverrideSuite "testing";
375         ValidTime 604800; // 7 days
376         Priority "6";
377         VersionChecks
378         {
379           MustBeNewerThan
380           {
381             OldStable;
382             Stable;
383 //          Proposed-Updates;
384             Testing;
385           };
386           MustBeOlderThan
387           {
388             Unstable;
389             Experimental;
390           };
391           Enhances
392           {
393             Testing;
394           };
395         };
396         UdebComponents
397         {
398           main;
399           non-free;
400         };
401   };
402
403   Etch-m68k
404   {
405         Components
406         {
407           main;
408           contrib;
409           non-free;
410         };
411         Announce "debian-testing-changes@lists.debian.org";
412         Origin "Debian";
413         Description "Debian Etch for m68k - Not Released";
414         CodeName "etch-m68k";
415         OverrideCodeName "etch";
416         Priority "5";
417         UdebComponents
418         {
419           main;
420           non-free;
421         };
422   };
423
424   Unstable
425   {
426         Components
427         {
428           main;
429           contrib;
430           non-free;
431         };
432         Announce "debian-devel-changes@lists.debian.org";
433         Origin "Debian";
434         Description "Debian Unstable - Not Released";
435         CodeName "sid";
436         OverrideCodeName "sid";
437         ValidTime 604800; // 7 days
438         Priority "7";
439         VersionChecks
440         {
441           MustBeNewerThan
442           {
443             OldStable;
444             Stable;
445 //          Proposed-Updates;
446             Testing;
447             Testing-Proposed-Updates;
448           };
449         };
450         UdebComponents
451         {
452           main;
453           non-free;
454         };
455   };
456
457   Experimental
458   {
459         Components
460         {
461           main;
462           contrib;
463           non-free;
464         };
465         Announce "debian-devel-changes@lists.debian.org";
466         Origin "Debian";
467         Description "Experimental packages - not released; use at your own risk.";
468         CodeName "experimental";
469         NotAutomatic "yes";
470         OverrideCodeName "sid";
471         OverrideSuite "unstable";
472         ValidTime 604800; // 7 days
473         Priority "0";
474         VersionChecks
475         {
476           MustBeNewerThan
477           {
478             OldStable;
479             Stable;
480 //          Proposed-Updates;
481             Testing;
482             Testing-Proposed-Updates;
483             Unstable;
484           };
485         };
486         UdebComponents
487         {
488           main;
489           non-free;
490         };
491   };
492
493 };
494
495 SuiteMappings
496 {
497  "propup-version oldstable-security stable testing testing-proposed-updates unstable";
498  "propup-version stable-security testing testing-proposed-updates unstable";
499  "propup-version testing-security unstable";
500  "map etch oldstable";
501  "map lenny stable";
502  "map squeeze testing";
503  "map sid unstable";
504  "map rc-buggy experimental";
505  "map oldstable oldstable-proposed-updates";
506  "map oldstable-security oldstable-proposed-updates";
507  "map stable proposed-updates";
508  "map stable-security proposed-updates";
509  "map stable-proposed-updates proposed-updates";
510  "map-unreleased oldstable unstable";
511  "map-unreleased stable unstable";
512  "map-unreleased proposed-updates unstable";
513  "map testing testing-proposed-updates";
514  "map testing-security testing-proposed-updates";
515  "map-unreleased testing unstable";
516  "map-unreleased testing-proposed-updates unstable";
517  "reject etch-m68k";
518 };
519
520 AutomaticByHandPackages {
521   "debian-installer-images" {
522     Source "debian-installer";
523     Section "raw-installer";
524     Extension "tar.gz";
525     Script "/srv/ftp.debian.org/dak/scripts/debian/byhand-di";
526   };
527
528   "debian-maintainers" {
529     Source "debian-maintainers";
530     Section "raw-keyring";
531     Extension "gpg";
532     Script "/srv/ftp.debian.org/dak/scripts/debian/byhand-dm";
533   };
534
535   "tag-overrides" {
536     Source "tag-overrides";
537     Section "byhand";
538     Extension "tar.gz";
539     Script "/srv/ftp.debian.org/dak/scripts/debian/byhand-tag";
540   };
541
542   "task-overrides" {
543     Source "tasksel";
544     Section "byhand";
545     Extension "tar.gz";
546     Script "/srv/ftp.debian.org/dak/scripts/debian/byhand-task";
547   };
548 };
549
550 Dir
551 {
552   Root "/srv/ftp.debian.org/ftp/";
553   Pool "/srv/ftp.debian.org/ftp/pool/";
554   Templates "/srv/ftp.debian.org/dak/templates/";
555   PoolRoot "pool/";
556   Lists "/srv/ftp.debian.org/database/dists/";
557   Log "/srv/ftp.debian.org/log/";
558   Lock "/srv/ftp.debian.org/lock";
559   Morgue "/srv/ftp.debian.org/morgue/";
560   MorgueReject "reject";
561   Override "/srv/ftp.debian.org/scripts/override/";
562   QueueBuild "/srv/incoming.debian.org/buildd/";
563   UrgencyLog "/srv/release.debian.org/britney/input/urgencies/";
564   Queue
565   {
566     Accepted "/srv/ftp.debian.org/queue/accepted/";
567     Byhand "/srv/ftp.debian.org/queue/byhand/";
568     ProposedUpdates "/srv/ftp.debian.org/queue/p-u-new/";
569     OldProposedUpdates "/srv/ftp.debian.org/queue/o-p-u-new/";
570     Done "/srv/ftp.debian.org/queue/done/";
571     Holding "/srv/ftp.debian.org/queue/holding/";
572     New "/srv/ftp.debian.org/queue/new/";
573     Reject "/srv/ftp.debian.org/queue/reject/";
574     Unchecked "/srv/ftp.debian.org/queue/unchecked/";
575     Newstage "/srv/ftp.debian.org/queue/newstage/";
576     BTSVersionTrack "/srv/ftp.debian.org/queue/bts_version_track/";
577   };
578 };
579
580 Queue-Report
581 {
582   ReportLocations
583   {
584     822Location "/srv/ftp.debian.org/web/new.822";
585   };
586 };
587
588 DB
589 {
590   Name "projectb";
591   Host "";
592   Port -1;
593 };
594
595 Architectures
596 {
597   source "Source";
598   all "Architecture Independent";
599   alpha "DEC Alpha";
600   hurd-i386 "Intel ia32 running the HURD";
601   hppa "HP PA RISC";
602   amd64 "AMD64";
603   arm "ARM";
604   armel "ARM eabi";
605   i386 "Intel ia32";
606   ia64 "Intel ia64";
607   m68k "Motorola Mc680x0";
608   mips "MIPS (Big Endian)";
609   mipsel "MIPS (Little Endian)";
610   powerpc "PowerPC";
611   s390 "IBM S/390";
612   sparc "Sun SPARC/UltraSPARC";
613   kfreebsd-i386 "GNU/kFreeBSD i386";
614   kfreebsd-amd64 "GNU/kFreeBSD amd64";
615 };
616
617 Archive
618 {
619   ftp-master
620   {
621     OriginServer "ftp-master.debian.org";
622     PrimaryMirror "ftp.debian.org";
623     Description "Master Archive for the Debian project";
624   };
625 };
626
627 Component
628 {
629   main
630   {
631         Description "Main";
632         MeetsDFSG "true";
633   };
634
635   contrib
636   {
637         Description "Contrib";
638         MeetsDFSG "true";
639   };
640
641   non-free
642   {
643         Description "Software that fails to meet the DFSG";
644         MeetsDFSG "false";
645   };
646 };
647
648 Section
649 {
650   admin;
651   cli-mono;
652   comm;
653   database;
654   debian-installer;
655   debug;
656   devel;
657   doc;
658   editors;
659   embedded;
660   electronics;
661   fonts;
662   games;
663   gnome;
664   graphics;
665   gnu-r;
666   gnustep;
667   hamradio;
668   haskell;
669   httpd;
670   interpreters;
671   java;
672   kde;
673   kernel;
674   libdevel;
675   libs;
676   lisp;
677   localization;
678   mail;
679   math;
680   misc;
681   net;
682   news;
683   ocaml;
684   oldlibs;
685   otherosfs;
686   perl;
687   php;
688   python;
689   ruby;
690   science;
691   shells;
692   sound;
693   tex;
694   text;
695   utils;
696   web;
697   vcs;
698   video;
699   x11;
700   xfce;
701   zope;
702 };
703
704 Priority
705 {
706   required 1;
707   important 2;
708   standard 3;
709   optional 4;
710   extra 5;
711   source 0; // i.e. unused
712 };
713
714 OverrideType
715 {
716   deb;
717   udeb;
718   dsc;
719 };
720
721 Location
722 {
723
724   // Pool locations on ftp-master.debian.org
725   /srv/ftp.debian.org/ftp/pool/
726     {
727       Archive "ftp-master";
728       Type "pool";
729     };
730
731 };
732
733 Urgency
734 {
735   Default "low";
736   Valid
737   {
738     low;
739     medium;
740     high;
741     emergency;
742     critical;
743   };
744 };
745
746 Contents
747 {
748   Header "contents";
749   Root "/srv/ftp.debian.org/test/";
750 }