]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/buildd/files/dupload.conf
modules/buildd: move dupload.conf within puppet control (merge package
[dsa-puppet.git] / modules / buildd / files / dupload.conf
1 package config;
2
3 #$preupload{'changes'} = '/usr/share/dupload/gpg-check %1';
4
5 $cfg{'anonymous-ftp-master'} = {
6         method => "ftp",
7         passive => 1,
8         fqdn => "ftp-master.debian.org",
9         incoming => "/pub/UploadQueue/",
10         # files pass on to dinstall on ftp-master which sends emails itself
11         dinstall_runs => 1,
12 };
13
14 # see http://www.debian.org/devel/debian-volatile/ for more information
15 $cfg{'volatile'} = {
16         fqdn => "volatile-master.debian.org",
17         incoming => "/pub/UploadQueue/",
18         # files pass on to dinstall on ftp-master which sends emails itself
19         dinstall_runs => 1,
20         passive => 1,
21 };
22
23 # For Delayed uploads use this. You can use 0-day, which is uploaded
24 # one hour before dinstall runs.
25 $delay = (defined($ENV{DEBDELAY}) ? $ENV{DEBDELAY} : 7);
26 $cfg{'delayed'} = {
27         fqdn => "ftp.upload.debian.org",
28         incoming => "/pub/UploadQueue/DELAYED/$delay-day/",
29         # The dinstall on ftp-master sends emails itself
30         dinstall_runs => 1,
31         passive => 1,
32 };
33
34 # Mentors upload queue, see
35 # http://mentors.debian.net/cgi-bin/maintainer-intro
36 $cfg{'mentors'} = {
37         fqdn    =>'mentors.debian.net',
38         incoming=>'/',
39         dinstall_runs => 1,
40         passive => 1,
41 };
42
43
44 $cfg{'anonymous-security'} = {
45         fqdn => "security-master.debian.org",
46         incoming => "/pub/SecurityUploadQueue",
47         # files pass on to dinstall on security which sends emails itself
48         dinstall_runs => 1,
49         passive => 1,
50 };
51
52 $cfg{'debian-edu'} = {
53         fqdn => "ftp.skolelinux.org",
54         incoming => "/pub/UploadQueue",
55         dinstall_runs => 1,
56         passive => 1,
57 };
58
59 $cfg{'bpo'} = {
60         fqdn => "backports-master.debian.org",
61         incoming => "/pub/UploadQueue",
62         dinstall_runs => 1,
63         passive => 1,
64 };
65
66 # Don't remove the following line.  Perl needs it.
67 1;
68
69 ## Local Variables: ##
70 ## mode:perl ##
71 ## End: ##