smeserver-koji/koji-setup/parameters.sh

41 lines
1.1 KiB
Bash
Raw Normal View History

2023-08-28 06:44:38 +02:00
#!/bin/bash
# Copyright (C) 2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
## KOJI RPM BUILD AND TRACKER
2023-08-31 04:28:25 +02:00
export KOJI_DIR=/mnt/koji
2023-08-31 07:08:05 +02:00
export KOJI_MASTER_FQDN="koji.koozali.org"
# Use master FQDN if a combined build and master server
#export KOJI_SLAVE_FQDN="$KOJI_MASTER_FQDN"
# Build server FQDN if different from master
2023-08-30 01:31:57 +02:00
export KOJI_SLAVE_FQDN="kojibuild1.koozali.org"
export KOJI_URL=http://"$KOJI_MASTER_FQDN"
2023-08-28 06:44:38 +02:00
export KOJID_CAPACITY=16
export TAG_NAME=sme
2023-08-28 06:44:38 +02:00
# Use for koji SSL certificates
export COUNTRY_CODE='EX'
export STATE='Example'
export LOCATION='Example'
export ORGANIZATION='Koozali'
export ORG_UNIT='Koji'
2023-08-28 06:44:38 +02:00
# Use for importing existing RPMs
export RPM_ARCH='x86_64'
export SRC_RPM_DIR=
export BIN_RPM_DIR=
export DEBUG_RPM_DIR=
# Comment the following if supplying all RPMs as an upstream and not a downstream
export EXTERNAL_REPO=http://mirrorlist.centos.org/releases/10/smeos/
2023-08-28 06:44:38 +02:00
## POSTGRESQL DATABASE
2023-08-30 09:35:00 +02:00
export POSTGRES_DIR=/var/lib/pgsql
2023-08-28 06:44:38 +02:00
## GIT REPOSITORIES
export GIT_DIR=
export GIT_FQDN="https://src.koozali.org/"
2023-08-28 06:44:38 +02:00
export IS_ANONYMOUS_GIT_NEEDED=false
export GITOLITE_PUB_KEY=''
## UPSTREAMS CACHE
2023-08-29 08:08:48 +02:00
export UPSTREAMS_DIR=/srv/upstreams
2023-08-28 06:44:38 +02:00