]> git.donarmstrong.com Git - dak.git/blob - tools/debianqueued-0.9/config-upload
Merge commit 'origin/sqlalchemy' into sqlalchemy
[dak.git] / tools / debianqueued-0.9 / config-upload
1 #
2 # example configuration file for debianqueued
3 #
4
5 # set to != 0 for debugging output (to log file)
6 $debug = 0;
7
8 # various programs:
9 # -----------------
10 $gpg       = "/usr/bin/gpg";
11 $ssh       = "/usr/bin/ssh";
12 $scp       = "/usr/bin/scp";
13 $ssh_agent = "/usr/bin/ssh-agent";
14 $ssh_add   = "/usr/bin/ssh-add";
15 $md5sum    = "/usr/bin/md5sum";
16 $mail      = "/usr/sbin/sendmail";
17 $mkfifo    = "/usr/bin/mkfifo";
18 $tar       = "/bin/tar"; # must be GNU tar!
19 $gzip      = "/bin/gzip";
20 $ar        = "/usr/bin/ar"; # must support p option, optional
21 $ls        = "/bin/ls";
22 $cp        = "/bin/cp";
23 $chmod     = "/bin/chmod";
24
25 # binaries which existance should be tested before each queue run
26 #@test_binaries = ();
27
28 # general options to ssh/scp
29 $ssh_options = "-o'BatchMode yes' -o'FallBackToRsh no' ".
30                "-o'ForwardAgent no' -o'ForwardX11 no' ".
31                "-o'PasswordAuthentication no' -o'StrictHostKeyChecking yes'";
32
33 # ssh key file to use for connects to master (empty: default ~/.ssh/identity)
34 $ssh_key_file = "";
35
36 # the incoming dir we live in
37 $incoming = "/srv/upload.debian.org/UploadQueue";
38
39 # the delayed incoming directories
40 $incoming_delayed = "/srv/queued/UploadQueue/DELAYED/%d-day";
41
42 # maximum delay directory, -1 for no delayed directory,
43 # incoming_delayed and target_delayed need to exist.
44 $max_delayed = -1;
45
46 # files not to delete in $incoming (regexp)
47 $keep_files = '(status|\.message|README)$';
48
49 # file patterns that aren't deleted right away
50 $valid_files = '(\.changes|\.tar\.gz|\.dsc|\.u?deb|diff\.gz|\.sh)$';
51
52 # Change files to mode 644 locally (after md5 check) or only on master?
53 $chmod_on_target = 0;
54
55 # Do an md5sum check?
56 $check_md5sum = 0;
57
58 # name of the status file or named pipe in the incoming dir
59 $statusfile = "$incoming/status";
60
61 # if 0, status file implemented as FIFO; if > 0, status file is plain
62 # file and updated with a delay of this many seconds
63 $statusdelay = 30;
64
65 # names of the keyring files
66 @keyrings = ( "/srv/keyring.debian.org/keyrings/debian-keyring.gpg",
67               "/srv/keyring.debian.org/keyrings/debian-keyring.pgp",
68               "/srv/keyring.debian.org/keyrings/debian-maintainers.gpg" );
69
70 # our log file
71 $logfile = "$queued_dir/log";
72
73 # our pid file
74 $pidfile = "$queued_dir/pid";
75
76 # upload method (ssh, copy, ftp)
77 $upload_method = "ftp";
78
79 # name of target host (ignored on copy method)
80 $target = "ftp-master.debian.org";
81
82 # login name on target host (for ssh, always 'ftp' for ftp, ignored for copy)
83 $targetlogin = "ftp";
84
85 # incoming on target host
86 $targetdir = "/pub/UploadQueue/";
87
88 # incoming/delayed on target host
89 $targetdir_delayed = "/srv/queued/DEFERRED/%d-day";
90
91 # select FTP debugging
92 $ftpdebug = 0;
93
94 # FTP timeout
95 $ftptimeout = 900;
96
97 # max. number of tries to upload
98 $max_upload_retries = 8;
99
100 # delay after first failed upload
101 $upload_delay_1 = 30*60; # 30 min.
102
103 # delay between successive failed uploads
104 $upload_delay_2 = 4*60*60; # 4 hours
105
106 # packages that must go to nonus.debian.org and thus are rejected here
107 #@nonus_packages = qw(gpg-rsaidea);
108
109 # timings:
110 # --------
111 #   time between two queue checks
112 $queue_delay = 5*60; # 5 min.
113 #   when are stray files deleted?
114 $stray_remove_timeout = 24*60*60; # 1 day
115 #   delay before reporting problems with a .changes file (not
116 #   immediately for to-be-continued uploads)
117 $problem_report_timeout = 30*60; # 30 min.
118 #   delay before reporting that a .changes file is missing (not
119 #   immediately for to-be-continued uploads)
120 $no_changes_timeout = 30*60; # 30 min.
121 #   when are .changes with persistent problems removed?
122 $bad_changes_timeout = 2*24*60*60; # 2 days
123 #   how long may a remote operation (ssh/scp) take?
124 $remote_timeout = 3*60*60; # 3 hours
125
126 # mail address of maintainer
127 $maintainer_mail = "ftpmaster\@debian.org";
128
129
130 # logfile rotating:
131 # -----------------
132 #    how often to rotate (in days)
133 $log_age = 7;
134 #    how much old logs to keep
135 $log_keep = 4;
136 #    send summary mail when rotating logs?
137 $mail_summary = 1;
138 #    write summary to file when rotating logs? (no if name empty)
139 $summary_file = "$queued_dir/summary";
140
141 # don't remove this, Perl needs it!
142 1;