mirror of
https://github.com/rocky-linux/ansible-role-kojid.git
synced 2024-11-15 01:31:24 +00:00
34 lines
750 B
Plaintext
34 lines
750 B
Plaintext
|
[kojid]
|
||
|
sleeptime=15
|
||
|
maxjobs={{ kojid_maxjobs }}
|
||
|
minspace={{ kojid_minspace }}
|
||
|
topdir={{ kojid_mount }}
|
||
|
workdir=/tmp/koji
|
||
|
mockdir=/var/lib/mock
|
||
|
mockuser=kojibuilder
|
||
|
vendor={{ kojid_vendor }}
|
||
|
packager={{ kojid_packager }}
|
||
|
mockhost=redhat-linux-gnu
|
||
|
server={{ kojid_hub_url }}
|
||
|
topurl={{ kojid_files_url }}
|
||
|
use_createrepo_c=True
|
||
|
from_addr=Koji Build System <buildsys@rockylinux.org>
|
||
|
smtphost={{ kojid_smtp_host }}
|
||
|
host_principal_format = compile/%s@ROCKYLINUX.ORG
|
||
|
keytab = {{ kojid_keytab }}
|
||
|
serverca = {{ kojid_ca_bundle }}
|
||
|
|
||
|
; Modify
|
||
|
allowed_scvs={{ kojid_allowed_scm }}
|
||
|
|
||
|
; Other settings
|
||
|
build_arch_can_fail = true
|
||
|
|
||
|
{% set plugins = [] %}
|
||
|
|
||
|
{% if kojid_runroot_builder %}
|
||
|
{{ plugins.append("runroot") }}
|
||
|
{% endif %}
|
||
|
|
||
|
plugins = {{ plugins | join(" ") }}
|