From 6d58a04aba2243748971ea13be0a5284a536731b Mon Sep 17 00:00:00 2001 From: Filip Valder Date: Mon, 5 Dec 2016 14:17:22 +0100 Subject: [PATCH] fix paths for koji/copr config files --- conf/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/config.py b/conf/config.py index 587fea76..319667b1 100644 --- a/conf/config.py +++ b/conf/config.py @@ -25,12 +25,12 @@ class BaseConfiguration(object): SYSTEM = 'koji' MESSAGING = 'fedmsg' # or amq - KOJI_CONFIG = '/etc/module_build_service/koji.conf' + KOJI_CONFIG = '/etc/module-build-service/koji.conf' KOJI_PROFILE = 'koji' KOJI_ARCHES = ['i686', 'armv7hl', 'x86_64'] KOJI_PROXYUSER = True KOJI_REPOSITORY_URL = 'https://kojipkgs.stg.fedoraproject.org/repos' - COPR_CONFIG = '/etc/module_build_service/copr.conf' + COPR_CONFIG = '/etc/module-build-service/copr.conf' PDC_URL = 'http://modularity.fedorainfracloud.org:8080/rest_api/v1' PDC_INSECURE = True PDC_DEVELOP = True