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