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