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
|
# Mail address where logs are sent to (mandatory, no default!)
$mailto = "buildd-maint@canonical.com";
$srcdep_lock_dir = "/home/buildd/";
%mailto = (
);
$arch="@ARCHTAG@";
# Maintainer name to use in .changes files (mandatory, no default!)
$maintainer_name="Ubuntu Build Daemon <buildd\@@FQDN@>";
# When to purge the build directory afterwards; possible values are
# "never", "successful", and "always"
$purge_build_directory="always";
#$purge_build_directory="successful";
# Hack a "frozen" into the Distribution: line if compiling for frozen
#$hack_changes_for_frozen = 1;
# After that time (in minutes) of inactivity a build is terminated.
# Activity
# is measured by output to the log file.
$stalled_pkg_timeout = 150;
# Some packages may exceed the general timeout (e.g. redirecting output to
# a file) and need a different timeout. Below are some examples.
#%individual_stalled_pkg_timeout = (
# ivtools => 600,
# smalleiffel => 600
#);
|