mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Note: pbuilder --create does not work well with relative build path, base.tgz creation fails. This led to the build_dir path being absolute. Perhaps we should make it more granular and only use absolute paths for pbuilder options.
13 lines
334 B
Python
13 lines
334 B
Python
import os
|
|
|
|
BUILD_DIR = 'build'
|
|
BUILD_CONFIG = os.path.join(BUILD_DIR, 'build-config.json')
|
|
|
|
# The default mirror was chosen entirely at random
|
|
DEBIAN_MIRROR = 'http://ftp.nl.debian.org/debian/'
|
|
|
|
DEBIAN_DISTRIBUTION = 'jessie'
|
|
|
|
PBUILDER_CONFIG = os.path.join(BUILD_DIR, 'pbuilderrc')
|
|
PBUILDER_DIR = os.path.join(BUILD_DIR, 'pbuilder')
|