/etc/dupload.conf is in dupload 2.7.0.
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 | # 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;
# Global variables:
# $default_host - the host to use if no --to option is used
# $no_parentheses_to_fullname - boolean, as its name says
#
# 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
# 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)
# Example of a default host:
#$default_host = "anonymous-ftp-master";
# -----------------
# Pre-defined hooks
# -----------------
# Check changes file for valid signatures
# Using GPG:
$preupload{'changes'} = '/usr/share/dupload/gpg-check %1';
# or using PGP:
# $preupload{'changes'} = '/usr/share/dupload/pgp-check %1';
# Lintian check of packages
# $preupload{'deb'} = 'lintian -v -i %1';
# Other hooks:
# $preupload{'sourcepackage'}
# $preupload{'file'}
# $preupload{'package'}
# $postupload{'changes'}
# $postupload{'sourcepackage'}
# $postupload{'file'}
# $postupload{'deb'}
# $postupload{'package'}
# Note: hooks can also be defined in a per-host basis, this
# overrides globaly defined hooks.
# -----------------
# 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",
incoming => "/pub/UploadQueue/",
# The dinstall on ftp-master sends emails itself
dinstall_runs => 1,
};
# see http://backports.debian.org/Contribute/ for more information
$cfg{'bpo'} = {
fqdn => "backports-master.debian.org",
incoming => "/pub/UploadQueue/",
dinstall_runs => 1,
};
# see http://www.debian.org/devel/debian-volatile/ for more information
$cfg{'volatile'} = {
fqdn => "volatile-master.debian.org",
incoming => "/pub/UploadQueue/",
# files pass on to dinstall on ftp-master which sends emails itself
dinstall_runs => 1,
passive => 1,
};
# For Delayed uploads use this. You can use 0-day, which is uploaded
# one hour before dinstall runs.
$delay = (defined($ENV{DEBDELAY}) ? $ENV{DEBDELAY} : 7);
$cfg{'delayed'} = {
fqdn => "ftp.upload.debian.org",
incoming => "/pub/UploadQueue/DELAYED/$delay-day/",
# The dinstall on ftp-master sends emails itself
dinstall_runs => 1,
};
# Mentors upload queue, see
# http://mentors.debian.net/cgi-bin/maintainer-intro
$cfg{'mentors'} = {
fqdn =>'mentors.debian.net',
incoming=>'/',
dinstall_runs => 1,
passive => 1,
};
# NOTE: Do _NOT_ upload a package to the security upload queue
# (oldstable-security, stable-security, etc.) without prior authorization
# from the security team. Please read:
# http://www.debian.org/doc/developers-reference/pkgs.html#bug-security
# Notice: There are login restriction on this host, scp will not
# work unless you are authorised.
#$cfg{'security'} = {
# fqdn => "security-master.debian.org",
# method => "scpb",
# incoming => "/org/security.debian.org/queue/unchecked",
# # The dinstall on security sends emails itself
# dinstall_runs => 1,
# nonus => 1,
#};
#$cfg{'anonymous-security'} = {
# fqdn => "security-master.debian.org",
# incoming => "/pub/SecurityUploadQueue",
# # files pass on to dinstall on security which sends emails itself
# dinstall_runs => 1,
# nonus => 1,
#};
# Don't remove the following line. Perl needs it.
1;
## Local Variables: ##
## mode:perl ##
## End: ##
|