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