2012-01-27 01:04:47 +01:00
|
|
|
###################################################
|
|
|
|
# build-default.cfg
|
|
|
|
# Default values for OPSI builder system
|
|
|
|
####################################################
|
|
|
|
|
2012-01-28 10:29:54 +01:00
|
|
|
|
2012-01-27 01:04:47 +01:00
|
|
|
##################################
|
|
|
|
# Global variables
|
|
|
|
#################################
|
|
|
|
TMP_DIR=/tmp
|
|
|
|
|
2012-01-28 11:20:26 +01:00
|
|
|
# STATUS - defines the stabability of the build
|
|
|
|
# Valid values:
|
|
|
|
# integration: this is used by a continuous integration server.
|
|
|
|
# NOTE: The 'RELEASE'-variable inside builder-project.cfg
|
|
|
|
# will be increased AUTOMATICALLY !!
|
|
|
|
# testing : it's in the testing/QM process
|
|
|
|
# release : passed the testing and go's to productive
|
|
|
|
STATUS="integration"
|
|
|
|
|
2012-01-27 10:00:40 +01:00
|
|
|
###############################
|
|
|
|
# CREATOR
|
|
|
|
###############################
|
|
|
|
# Part of the published OPSI-package name
|
2012-01-28 10:29:54 +01:00
|
|
|
# Limitation: max 3 chars (beause OPSI limites REVISION to 16 chars)
|
|
|
|
CREATOR_TAG=xx
|
2012-01-27 10:00:40 +01:00
|
|
|
|
|
|
|
# Additonal information from the person creating the packages
|
|
|
|
CREATOR_NAME="Your name"
|
|
|
|
CREATOR_EMAIL="your-email@domain.de"
|
|
|
|
|
2012-01-28 11:20:26 +01:00
|
|
|
|
|
|
|
|
2012-01-27 01:04:47 +01:00
|
|
|
##################################
|
|
|
|
# OPSI repository settings
|
|
|
|
#################################
|
|
|
|
# Basedirectory storing OPSI-packages after building
|
|
|
|
OPSI_REPOS_BASE_DIR=$HOME/.opsi-repository
|
|
|
|
|
|
|
|
# Directory- and filename pattern
|
|
|
|
OPSI_REPOS_PRODUCT_DIR=${OPSI_REPOS_BASE_DIR}/${STATUS}/${VENDOR}/${PN}/${VERSION}-${RELEASE}
|
|
|
|
|
|
|
|
# OPSI-package filepattern
|
2012-01-28 12:27:03 +01:00
|
|
|
OPSI_REPOS_FILE_PATTERN=${PN}_${VERSION}-${CREATOR_TAG}${RELEASE}
|
2012-01-28 10:29:54 +01:00
|
|
|
|
2012-01-27 01:04:47 +01:00
|
|
|
# Force alway upload to opsi repos
|
2012-01-27 01:19:37 +01:00
|
|
|
# OPSI_REPOS_FORCE_UPLOAD=1
|
2012-01-27 01:04:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
###############################
|
|
|
|
# Distribution / Vendor settings
|
|
|
|
###############################
|
|
|
|
|
|
|
|
# Directory downloading/cacheing the artifacts like MSI package or icons from the vendor webside
|
|
|
|
DIST_CACHE_DIR=$HOME/.opsi-dist-cache/${PN}-${VERSION}
|
|
|
|
|
|
|
|
# private dist repository. You can use all variables from release.cfg insde the URL
|
|
|
|
# this optinal URL will be the FIRST url to check for downloading vendor stuff.
|
|
|
|
# To copy a local file, the repos should start with file://
|
|
|
|
DIST_PRIVATE_REPOS=file://$HOME/opsi-dist.private/$VENDOR/$PN/$VERSION
|
|
|
|
|
|
|
|
# Force always downloading dist files
|
2012-01-27 01:19:37 +01:00
|
|
|
# DIST_FORCE_DOWNLOAD=1
|
2012-01-27 01:04:47 +01:00
|
|
|
|