]> git.donarmstrong.com Git - dak.git/blob - tools/debianqueued-0.9/config-upload
Merge commit 'godog/master' into merge
[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
69 # our log file
70 $logfile = "$queued_dir/log";
71
72 # our pid file
73 $pidfile = "$queued_dir/pid";
74
75 # upload method (ssh, copy, ftp)
76 $upload_method = "ftp";
77
78 # name of target host (ignored on copy method)
79 $target = "ftp.upload.debian.org";
80
81 # login name on target host (for ssh, always 'ftp' for ftp, ignored for copy)
82 $targetlogin = "ftp";
83
84 # incoming on target host
85 $targetdir = "/pub/UploadQueue/";
86
87 # incoming/delayed on target host
88 $targetdir_delayed = "/srv/queued/DEFERRED/%d-day";
89
90 # select FTP debugging
91 $ftpdebug = 0;
92
93 # FTP timeout
94 $ftptimeout = 900;
95
96 # max. number of tries to upload
97 $max_upload_retries = 8;
98
99 # delay after first failed upload
100 $upload_delay_1 = 30*60; # 30 min.
101
102 # delay between successive failed uploads
103 $upload_delay_2 = 4*60*60; # 4 hours
104
105 # packages that must go to nonus.debian.org and thus are rejected here
106 #@nonus_packages = qw(gpg-rsaidea);
107
108 # timings:
109 # --------
110 #   time between two queue checks
111 $queue_delay = 5*60; # 5 min.
112 #   when are stray files deleted?
113 $stray_remove_timeout = 24*60*60; # 1 day
114 #   delay before reporting problems with a .changes file (not
115 #   immediately for to-be-continued uploads)
116 $problem_report_timeout = 30*60; # 30 min.
117 #   delay before reporting that a .changes file is missing (not
118 #   immediately for to-be-continued uploads)
119 $no_changes_timeout = 30*60; # 30 min.
120 #   when are .changes with persistent problems removed?
121 $bad_changes_timeout = 2*24*60*60; # 2 days
122 #   how long may a remote operation (ssh/scp) take?
123 $remote_timeout = 3*60*60; # 3 hours
124
125 # mail address of maintainer
126 $maintainer_mail = "ftpmaster\@debian.org";
127
128
129 # logfile rotating:
130 # -----------------
131 #    how often to rotate (in days)
132 $log_age = 7;
133 #    how much old logs to keep
134 $log_keep = 4;
135 #    send summary mail when rotating logs?
136 $mail_summary = 1;
137 #    write summary to file when rotating logs? (no if name empty)
138 $summary_file = "$queued_dir/summary";
139
140 # don't remove this, Perl needs it!
141 1;