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 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# This type of configuration file is used on release.debian.org/transitions
# to run Release Team's transition tracker.
# Suite to analyse
suite = "unstable";
# Components to take into account
components = auto;
# List of architectures
architectures = auto;
# Architectures present in the list "ignored" are not taken into account
# when computing percentages for each transition.
ignored = [ ];
# Configuration paths
# - base is where html files are produced into a subdir "html"
# (it also expects a copy of media/ dir there)
# - config-dir is where transition trackers (.ben files) are stored
# and organized in dirs. Each subdir of config-dir is a profile and
# they are: planned, ongoing, permanent, finished, old and unknown.
# - use-cache is a boolean value that tells ben whether he should consider
# using the cache file "ben.cache" stored in directory "cache-dir".
# - run-debcheck activates installability checking for all packages on all
# architectures. This is necessary if you want to use ".uninstallable"
# predicates in .ben trackers.
# - use-projectb makes ben using projectb database to retrieve Packages
# information instead of downloding separate Packages_* files.
base = "/srv/release.debian.org/www/transitions";
config-dir = "/srv/release.debian.org/www/transitions/config";
use-cache = true;
cache-dir = "/srv/release.debian.org/tmp/ben-cache";
run-debcheck = true;
base-url = "https://release.debian.org/transitions";
template = "debianrt";
use-projectb = true;
# There are other configuration variables like:
# - mirror-binaries mirror to be used to retrieve Packages_* files
# - mirror-sources mirror to be used to retrieve Sources_* files
# - mirror sets both mirror-binaries and mirror-sources to the same mirror
# These options are (obviously) not taken into account if use-projectb is
# set to true.
mirror = "http://deb.debian.org/debian";
|