-
Notifications
You must be signed in to change notification settings - Fork 1
/
local-config-example.sh
75 lines (62 loc) · 2.13 KB
/
local-config-example.sh
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# dbuild local configuration example
#
# Copy this file to `local-config.sh` and customize for your site
#
# The below examples are intended for many use cases; see files in
# `base-config.sh`, `packages`, `distro` and `repo` in the `scripts`
# directory for more variables to customize.
# Set your user name and email here. Used as the 'Maintainer' field in
# package changelogs.
#
#MAINTAINER="John Doe"
#EMAIL="[email protected]"
# User ID to use in Docker containers. Try `id -u`.
#DOCKER_UID=1000
# Override distro settings
#
# Custom mirror
#DISTRO_MIRROR[jessie]="http://http.debian.net/debian"
#DISTRO_MIRROR[jessie-bpo]="${DISTRO_MIRROR[jessie]}"
#
# Restrict list of arches
#DISTRO_ARCHES[jessie]="armhf"
#
# Add repo to distro
#DISTRO_REPOS[jessie]+=" dovetail-automata"
# Build chroots somewhere besides `chroots` directory
#OUTSIDE_SBUILD_CHROOT_DIR="/mnt/bigdisk/chroots"
# Build apt package repository somewhere besides `repo` directory
#OUTSIDE_REPO_BASE_DIR="/home/packages/debian"
# Run parallel jobs during build (sets `-j n`)
#PARALLEL_JOBS=4
# Run in 'turbo mode': Don't run `apt-get update` before build or
# `apt-get purge` after build
#TURBO_MODE=true
# Use aufs on tmpfs in sbuild
#SBUILD_USE_AUFS="true"
# Use http/https proxy for package downloads. Especially useful for
# caching packages between removing and rebuilding schroots.
#
#HTTP_PROXY=http://192.168.0.42:3128
# Whether to create separate directories for each distro in the local
# apt repository, or to merge the `dists` and `pool` directories;
# default 'false'
#DISTRO_SEPARATE_REPO_DIR="true"
# Enable/disable color output in sbuild: 1 or 0. Color can be
# annoying in dumb terminals that don't interpret escape characters.
#SBUILD_LOG_COLOUR="0"
# Enable distcc
#DISTCC_ENABLE="true"
#DISTCC_HOSTS="localhost 127.0.0.1"
#DISTCC_LOG_LEVEL="info"
# Setting this can cause autoconf -fPIC tests to fail, since they scrape
# compiler output
#DISTCC_VERBOSE="1"
# Set DH_VERBOSE for package builds
#DH_VERBOSE="1"
# Disable ccache
#CCACHE_DISABLE="disable"
# Debug ccache problems
#CCACHE_LOGFILE=$CCACHE_DIR/ccache.log
# Ccache max cache size; default 1G
#CCACHE_MAXSIZE=2G