2023-09-04 02:51:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-09-04 07:10:17 +02:00
|
|
|
## HTTPD settings
|
2023-09-04 02:51:05 +02:00
|
|
|
export HTTPD_USER=apache
|
|
|
|
export HTTPD_DOCUMENT_ROOT=/var/www/html
|
|
|
|
|
|
|
|
## KOJI RPM BUILD AND TRACKER
|
|
|
|
export KOJI_DIR=/mnt/koji
|
|
|
|
export KOJI_URL=http://"$KOJI_HUB_FQDN"
|
|
|
|
export KOJID_CAPACITY=16
|
|
|
|
export TAG_NAME=sme
|
|
|
|
# Use for koji SSL certificates
|
2023-09-04 07:10:17 +02:00
|
|
|
export KOJI_PKI_DIR=/etc/pki/koji
|
2023-09-04 02:51:05 +02:00
|
|
|
export COUNTRY_CODE='EX'
|
|
|
|
export STATE='Example'
|
|
|
|
export LOCATION='Example'
|
|
|
|
export ORGANIZATION='Koozali'
|
|
|
|
export ORG_UNIT='Koji'
|
|
|
|
# Use for importing existing RPMs
|
|
|
|
export RPM_ARCH='x86_64 noarch'
|
|
|
|
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
|
2023-09-04 03:01:52 +02:00
|
|
|
export EXTERNAL_REPO=hhttp://buildsys.koozali.org/build/7/os/\$arch/
|
2023-09-04 02:51:05 +02:00
|
|
|
|
|
|
|
## POSTGRESQL DATABASE
|
2023-09-04 07:10:17 +02:00
|
|
|
export POSTGRES_USER=postgres
|
2023-09-04 02:51:05 +02:00
|
|
|
export POSTGRES_DIR=/var/lib/pgsql
|
|
|
|
|
|
|
|
## GIT REPOSITORIES
|
|
|
|
export GIT_DIR=
|
|
|
|
export GIT_FQDN="https://src.koozali.org/"
|
|
|
|
|