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