]> git.decadent.org.uk Git - dak.git/blob - config/debian-security/dak.conf
Remove Clean-Suites::StayOfExecution.
[dak.git] / config / debian-security / dak.conf
1 Dinstall
2 {
3    // was non-us.d.o path before
4    SigningKeyring "/srv/security-master.debian.org/s3kr1t/dot-gnupg/secring.gpg";
5    SigningPubKeyring "/srv/security-master.debian.org/s3kr1t/dot-gnupg/pubring.gpg";
6    SendmailCommand "/usr/sbin/sendmail -odq -oi -t";
7    MyEmailAddress "Debian FTP Masters <ftpmaster@ftp-master.debian.org>";
8    MyAdminAddress "ftpmaster@debian.org";
9    MyHost "debian.org";  // used for generating user@my_host addresses in e.g. manual_reject()
10    MyDistribution "Debian"; // Used in emails
11    BugServer "bugs.debian.org";
12    PackagesServer "packages.debian.org";
13    Bcc "archive@ftp-master.debian.org";
14    // GroupOverrideFilename "override.group-maint";
15    SkipTime 300;
16    CloseBugs "false";
17    OverrideDisparityCheck "false";
18    BXANotify "false";
19    DefaultSuite "stable";
20    SuiteSuffix "updates/";
21    OverrideMaintainer "dak@security.debian.org";
22    LegacyStableHasNoSections "false";
23    AllowSourceOnlyUploads "true";
24 };
25
26 Process-New
27 {
28   DinstallLockFile "/srv/security-master.debian.org/lock/processnew.lock";
29   LockDir "/srv/security-master.debian.org/lock/new/";
30 };
31
32 Process-Policy
33 {
34   CopyDir "/srv/security-master.debian.org/queue/accepted";
35 };
36
37 Import-Users-From-Passwd
38 {
39   ValidGID "800";
40   // Comma separated list of users who are in Postgres but not the passwd file
41   KnownPostgres "postgres,dak,www-data,udmsearch,repuser,debian-backup";
42 };
43
44 Queue-Report
45 {
46   Directories
47   {
48     byhand;
49     new;
50     unembargoed;
51     embargoed;
52   };
53 };
54
55 Import-LDAP-Fingerprints
56 {
57   LDAPDn "ou=users,dc=debian,dc=org";
58   LDAPServer "db.debian.org";
59   CACertFile "/etc/ssl/certs/spi-cacert-2008.pem";
60   ExtraKeyrings
61   {
62     "/srv/keyring.debian.org/keyrings/removed-keys.pgp";
63     "/srv/keyring.debian.org/keyrings/removed-keys.gpg";
64     "/srv/keyring.debian.org/keyrings/extra-keys.pgp";
65   };
66   KeyServer "wwwkeys.eu.pgp.net";
67 };
68
69 Check-Overrides
70 {
71   OverrideSuites
72   {
73     Stable
74     {
75       Process "0";
76     };
77
78     Testing
79     {
80       Process "0";
81     };
82
83   };
84 };
85
86 Clean-Queues
87 {
88   Options
89   {
90     Days 14;
91   };
92  MorgueSubDir "queue";
93 };
94
95 Rm
96 {
97   Options
98   {
99     Suite "unstable";
100   };
101
102   MyEmailAddress "Debian Archive Maintenance <ftpmaster@ftp-master.debian.org>";
103   LogFile "/srv/security-master.debian.org/dak-log/removals.txt";
104 };
105
106 Clean-Suites
107 {
108   MorgueSubDir "pool";
109   OverrideFilename "override.source-only";
110 };
111
112 Security-Install
113 {
114   ComponentMappings
115   {
116     main "ftp-master.debian.org:/pub/UploadQueue";
117     contrib "ftp-master.debian.org:/pub/UploadQueue";
118     non-free "ftp-master.debian.org:/pub/UploadQueue";
119     non-US/main "non-us.debian.org:/pub/UploadQueue";
120     non-US/contrib "non-us.debian.org:/pub/UploadQueue";
121     non-US/non-free "non-us.debian.org:/pub/UploadQueue";
122   };
123 };
124
125 SuiteMappings
126 {
127  "silent-map stable-security stable";
128  "silent-map oldstable-security oldstable";
129   "silent-map etch-secure oldstable";
130   "silent-map testing-security testing";
131   "silent-map squeeze-security oldstable";
132   "silent-map wheezy-security stable";
133   "silent-map jessie-security testing";
134 };
135
136 Dir
137 {
138   Base "/srv/security-master.debian.org/";
139   Root "/srv/security-master.debian.org/ftp/";
140   Pool "/srv/security-master.debian.org/ftp/pool/";
141   Export "/srv/security-master.debian.org/export/";
142   Dak "/srv/security-master.debian.org/dak/";
143   Templates "/srv/security-master.debian.org/dak/templates/";
144   Override "/srv/security-master.debian.org/override/";
145   Lock "/srv/security-master.debian.org/lock/";
146   Cache "/srv/security-master.debian.org/database/";
147   Lists "/srv/security-master.debian.org/dak-database/dists/";
148   Log "/srv/security-master.debian.org/dak-log/";
149   Morgue "/srv/security-master.debian.org/morgue/";
150   Override "/srv/security-master.debian.org/scripts/override/";
151   Upload "/srv/queued/ftpmaster/";
152   TempPath "/srv/security-master.debian.org/tmp";
153   Holding "/srv/security-master.debian.org/queue/holding/";
154   Done "/srv/security-master.debian.org/queue/done/";
155   Reject "/srv/security-master.debian.org/queue/reject/";
156
157   Queue
158   {
159     Embargoed "/srv/security-master.debian.org/queue/embargoed/";
160     Unembargoed "/srv/security-master.debian.org/queue/unembargoed/";
161     Disembargo "/srv/security-master.debian.org/queue/unchecked-disembargo/";
162   };
163 };
164
165 DB
166 {
167   Service "obscurity";
168   // PoolSize should be at least ThreadCount + 1
169   PoolSize 5;
170   // MaxOverflow shouldn't exceed postgresql.conf's max_connections - PoolSize
171   MaxOverflow 13;
172   // should be false for encoding == SQL_ASCII
173   Unicode "false"
174 };
175
176 ComponentMappings
177 {
178  "main updates/main";
179  "contrib updates/contrib";
180  "non-free updates/non-free";
181  "non-US/main updates/main";
182  "non-US/contrib updates/contrib";
183  "non-US/non-free updates/non-free";
184 };
185
186 Urgency
187 {
188   Default "low";
189   Valid
190   {
191     low;
192     medium;
193     high;
194     emergency;
195     critical;
196   };
197 };