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