This file is indexed.

/etc/dupload.conf is in dupload 2.9.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# This is the configuration for dupload.
# It is intended to be read and evaluated from Perl.
#
### PLEASE READ THE dupload.conf(5) MANUAL PAGE
#
# Reading the dupload(1) manual page is also advisable.

package config;

use strict;
use warnings;

# ----------------
# Global variables
# ----------------

# The host to use if no --to option is used.
our $default_host;

# Boolean, as its name says.
our $no_parentheses_to_fullname;

# Example of a default host:
#$default_host = "anonymous-ftp-master";
$default_host = "ubuntu";

# ------------
# Global hooks
# ------------

our %preupload = (
    # Check changes file for valid signatures.
    changes => '/usr/share/dupload/gpg-check %1',
    sourcepackage => undef,
    file => undef,
    # Lintian check of packages.
    #deb => 'lintian -v -i %1',
    package => undef,
);

our %postupload = (
    changes => undef,
    sourcepackage => undef,
    file => undef,
    deb => undef,
    package => undef,
);

# Note: hooks can also be defined in a per-host basis, this
# overrides globaly defined hooks.

# -------------------
# Hosts configuration
# -------------------

our %cfg;

# Per-host variables:
# fqdn          - full hostname
# method        - ftp, scp, scpb or rsync
#                 (defaults to ftp)
# login         - user name to use on the remote host
#                 (defaults to 'anonymous' for FTP and local username for SSH methods)
#                 use "user\@remote" for firewall logins
# filemode      - destination files mode (undef disables, defaults to 0644)
# incoming      - directory where to upload first
# queuedir      - directory where to move if upload succeeded
# mailto        - address for announcement email (stable)
# mailtx        - address for announcement email (unstable)
# cc            - address for carbon copy of the announcement email
# fullname      - the full name to use in the announcement email
#                 (defaults to what your local MTA uses)
# visibleuser   - the username to use in the announcement email
#                 (defaults to local username)
# visiblename   - the domainname to use in the announcement email
#                 (defaults to what your local MTA uses)

# -----------------
# Pre-defined hosts
# -----------------

$cfg{'ftp-master'} = {
    fqdn => 'ssh.upload.debian.org',
    method => 'scpb',
    incoming => '/srv/upload.debian.org/UploadQueue/',
    # Files pass on to dinstall on ftp-master which sends emails itself.
    dinstall_runs => 1,
};
$cfg{'anonymous-ftp-master'} = {
    fqdn => 'ftp.upload.debian.org',
    passive => 1,
    incoming => '/pub/UploadQueue/',
    # Files pass on to dinstall on ftp-master which sends emails itself.
    dinstall_runs => 1,
};
# See <https://lists.debian.org/debian-project/2009/05/msg00036.html>.
$cfg{'anonymous-ftp-eu'} = {
    fqdn => 'ftp.eu.upload.debian.org',
    passive => 1,
    incoming => '/pub/UploadQueue/',
    # Files pass on to dinstall on ftp-master which sends emails itself.
    dinstall_runs => 1,
};

# See <https://backports.debian.org/Contribute/> for more information.
$cfg{'bpo'} = {
    fqdn => 'backports-master.debian.org',
    passive => 1,
    incoming => '/pub/UploadQueue/',
    dinstall_runs => 1,
};

# For Delayed uploads use this. You can use 0-day, which is uploaded
# one hour before dinstall runs.
my $delay = (defined($ENV{DEBDELAY}) ? $ENV{DEBDELAY} : 7);
$cfg{'delayed'} = {
    fqdn => 'ftp.upload.debian.org',
    passive => 1,
    incoming => "/pub/UploadQueue/DELAYED/$delay-day/",
    # Files pass on to dinstall on ftp-master which sends emails itself.
    dinstall_runs => 1,
};

# Mentors upload queue, for more information see
# <https://mentors.debian.net/cgi-bin/maintainer-intro>.
$cfg{'mentors'} = {
    fqdn => 'mentors.debian.net',
    passive => 1,
    incoming => '/',
    dinstall_runs => 1,
};

# NOTE: Do _NOT_ upload a package to the security upload queue
# (oldstable-security, stable-security, etc.) without prior authorization
# from the Debian security team. Please see
# <https://www.debian.org/doc/developers-reference/pkgs.html#bug-security>.

# See <https://lists.debian.org/debian-devel-announce/2017/10/msg00000.html>
$cfg{'security'} = {
    fqdn => 'ssh.security.upload.debian.org',
    method => 'scpb',
    incoming => '/srv/security.upload.debian.org/SecurityUploadQueue',
    filemode => undef,
    # Files pass on to dinstall on security which sends emails itself.
    dinstall_runs => 1,
    preupload => {
        changes => '/usr/share/dupload/debian-security-auth %1',
    },
};
$cfg{'anonymous-security'} = {
    fqdn => 'ftp.security.upload.debian.org',
    passive => 1,
    incoming => '/pub/SecurityUploadQueue',
    filemode => undef,
    # Files pass on to dinstall on security which sends emails itself.
    dinstall_runs => 1,
    preupload => {
        changes => '/usr/share/dupload/debian-security-auth %1',
    },
};
$cfg{'security-unembargoed'} = {
    fqdn => 'ssh.security.upload.debian.org',
    method => 'scpb',
    incoming => '/srv/security.upload.debian.org/OpenSecurityUploadQueue',
    # Files pass on to dinstall on security which sends emails itself.
    dinstall_runs => 1,
    preupload => {
        changes => '/usr/share/dupload/debian-security-auth %1',
    },
};
$cfg{'anonymous-security-unembargoed'} = {
    fqdn => 'ftp.security.upload.debian.org',
    passive => 1,
    incoming => '/pub/OpenSecurityUploadQueue',
    # Files pass on to dinstall on security which sends emails itself.
    dinstall_runs => 1,
    preupload => {
        changes => '/usr/share/dupload/debian-security-auth %1',
    },
};

$cfg{'ubuntu'} = {
    fqdn => 'upload.ubuntu.com',
    passive => 1,
    incoming => '/ubuntu',
    dinstall_runs => 1,
};

# Don't remove the following line.  Perl needs it.
1;

## vim: ft=perl
## Local Variables: ##
## mode:perl ##
## End: ##