From 1a19dc1a24741415b7a4552c1da3b29d802b336e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Dec 22 2016 21:19:00 +0000 Subject: [PATCH 1/2] rename configs and enable fast upload rename all the arch config files to end in .conf add a fedora.conf so that the fedora profile could be used in scripts rename the files to end in .conf so koji will read them Signed-off-by: Dennis Gilmore --- diff --git a/configs/arm.conf b/configs/arm.conf index f927c15..b4bea57 100644 --- a/configs/arm.conf +++ b/configs/arm.conf @@ -13,3 +13,5 @@ topurl = https://armpkgs.fedoraproject.org/ authtype = kerberos krb_rdns = false + +use_fast_upload = yes diff --git a/configs/fedora.conf b/configs/fedora.conf new file mode 100644 index 0000000..fd12a77 --- /dev/null +++ b/configs/fedora.conf @@ -0,0 +1,17 @@ +[fedora] + +;configuration for koji cli tool + +;url of XMLRPC server +server = https://koji.fedoraproject.org/kojihub + +;url of web interface +weburl = https://koji.fedoraproject.org/koji + +;url of package download site +topurl = https://kojipkgs.fedoraproject.org/ + +authtype = kerberos +krb_rdns = false + +use_fast_upload = yes diff --git a/configs/ppc.conf b/configs/ppc.conf index 10ede79..b7ac17a 100644 --- a/configs/ppc.conf +++ b/configs/ppc.conf @@ -13,3 +13,5 @@ topurl = https://ppc.koji.fedoraproject.org/ authtype = kerberos krb_rdns = false + +use_fast_upload = yes diff --git a/configs/s390.conf b/configs/s390.conf index df256f7..32aed2d 100644 --- a/configs/s390.conf +++ b/configs/s390.conf @@ -13,3 +13,5 @@ topurl = https://s390pkgs.fedoraproject.org/ authtype = kerberos krb_rdns = false + +use_fast_upload = yes diff --git a/configs/stg.conf b/configs/stg.conf index fab9e1d..81462d5 100644 --- a/configs/stg.conf +++ b/configs/stg.conf @@ -13,3 +13,5 @@ topurl = https://kojipkgs.stg.fedoraproject.org/ authtype = kerberos krb_rdns = false + +use_fast_upload = yes From c5a97a9f05ae6327c09844f42a6779f83b07697a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Dec 22 2016 21:19:00 +0000 Subject: [PATCH 2/2] install the fedora.conf koji config Signed-off-by: Dennis Gilmore --- diff --git a/Makefile.am b/Makefile.am index 52b7d54..0aa4a65 100644 --- a/Makefile.am +++ b/Makefile.am @@ -70,10 +70,12 @@ fedora_cert_PYTHON = $(wildcard $(srcdir)/src/fedora_cert/*.py) fedora_certdir = $(pythondir)/fedora_cert EXTRA_DIST += configs/arm.conf \ + configs/fedora.conf \ configs/ppc.conf \ configs/s390.conf \ configs/stg.conf kojiconf_DATA = $(srcdir)/configs/arm.conf \ + $(srcdir)/configs/fedora.conf \ $(srcdir)/configs/ppc.conf \ $(srcdir)/configs/s390.conf \ $(srcdir)/configs/stg.conf