diff options
author | Erich Eckner <git@eckner.net> | 2017-11-16 12:54:33 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-11-16 12:54:33 +0100 |
commit | 4c8ea425567ea60311d81e2a165ccf03d768710d (patch) | |
tree | fa366a77c4113b6f74d42454ec20e99402d3a245 /conf | |
parent | 2952e1298dd8c73c5b2442dc309eaec450d04b7d (diff) | |
download | builder-4c8ea425567ea60311d81e2a165ccf03d768710d.tar.xz |
bin/common-functions: extract configuration about archaic pacakages into conf/default.conf
Diffstat (limited to 'conf')
-rwxr-xr-x | conf/default.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/conf/default.conf b/conf/default.conf index a31c41b..68efd5f 100755 --- a/conf/default.conf +++ b/conf/default.conf @@ -45,6 +45,13 @@ if [ -s "${base_dir}/conf/admin-gpg-keys" ]; then ) fi +# How long should packages in the pipeline be considered "fresh" (in days)? +# If a package surpasses this limit, it will be considered unimportant and won't +# block other packages anymore +max_package_age_build_list=7 +max_package_age_staging=2 +max_package_age_testing=7 + # to access the master mirror via rsync master_mirror_rsync_command='rsync --password-file=/home/slave/rsync.password' master_mirror_rsync_directory='rsync://buildmaster@mirror.archlinux32.org/packages32' |