First cut at default parameters for sme

This commit is contained in:
Trevor Batley 2023-08-28 15:38:39 +10:00
parent a11e03d78b
commit dc5d89a296

View File

@ -3,39 +3,39 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
## KOJI RPM BUILD AND TRACKER ## KOJI RPM BUILD AND TRACKER
export KOJI_DIR=/srv/koji export KOJI_DIR=/mnt/koji
export KOJI_MOUNT_DIR=/mnt/koji export KOJI_MOUNT_DIR=/mnt/koji
export KOJI_MASTER_FQDN="$(hostname -f)" export KOJI_MASTER_FQDN="$(hostname -f)"
export KOJI_SLAVE_FQDN="$KOJI_MASTER_FQDN" export KOJI_SLAVE_FQDN="$KOJI_MASTER_FQDN"
export KOJI_URL=https://"$KOJI_MASTER_FQDN" export KOJI_URL=http://"$KOJI_MASTER_FQDN"
export KOJID_CAPACITY=16 export KOJID_CAPACITY=16
export TAG_NAME=clear export TAG_NAME=sme
# Use for koji SSL certificates # Use for koji SSL certificates
export COUNTRY_CODE='EX' export COUNTRY_CODE='EX'
export STATE='Example' export STATE='Example'
export LOCATION='Example' export LOCATION='Example'
export ORGANIZATION='Example' export ORGANIZATION='Koozali'
export ORG_UNIT='Example' export ORG_UNIT='Koji'
# Use for importing existing RPMs # Use for importing existing RPMs
export RPM_ARCH='x86_64' export RPM_ARCH='x86_64'
export SRC_RPM_DIR= export SRC_RPM_DIR=
export BIN_RPM_DIR= export BIN_RPM_DIR=
export DEBUG_RPM_DIR= export DEBUG_RPM_DIR=
# Comment the following if supplying all RPMs as an upstream and not a downstream # Comment the following if supplying all RPMs as an upstream and not a downstream
export EXTERNAL_REPO=https://cdn.download.clearlinux.org/releases/"$(curl https://download.clearlinux.org/latest)"/clear/\$arch/os/ export EXTERNAL_REPO=http://mirrorlist.centos.org/releases/10/smeos/
## POSTGRESQL DATABASE ## POSTGRESQL DATABASE
export POSTGRES_DIR=/srv/pgsql export POSTGRES_DIR=/var/lib/pgsql
## GIT REPOSITORIES ## GIT REPOSITORIES
export GIT_DIR=/srv/gitolite export GIT_DIR=
export GIT_FQDN="$KOJI_MASTER_FQDN" export GIT_FQDN="https://src.koozali.org/"
export IS_ANONYMOUS_GIT_NEEDED=false export IS_ANONYMOUS_GIT_NEEDED=false
export GITOLITE_PUB_KEY='' export GITOLITE_PUB_KEY=''
## UPSTREAMS CACHE ## UPSTREAMS CACHE
export UPSTREAMS_DIR=/srv/upstreams export UPSTREAMS_DIR=/mnt/upstreams
## MASH RPMS ## MASH RPMS
export MASH_DIR=/srv/mash export MASH_DIR=/mnt/mash
export MASH_SCRIPT_DIR=/usr/local/bin export MASH_SCRIPT_DIR=/usr/local/bin