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