Add subdirectory for builder plugin configuration.

This commit is contained in:
Ralph Bean 2016-04-08 12:15:07 -04:00
parent 69e77dd693
commit 7fd256cde1
No known key found for this signature in database
GPG key ID: A90ED7DE971095FF
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ BUILDERPLUGINDIR = /usr/lib/koji-builder-plugins
HUBFILES = $(wildcard hub/*.py)
BUILDERFILES = $(wildcard builder/*.py)
HUBCONFDIR = /etc/koji-hub/plugins
BUILDERCONFDIR = /etc/kojid
BUILDERCONFDIR = /etc/kojid/plugins
HUBCONFFILES = $(wildcard hub/*.conf)
BUILDERCONFFILES = $(wildcard builder/*.conf)

View file

@ -23,7 +23,7 @@ except ImportError:
__all__ = ('RunRootTask',)
CONFIG_FILE = '/etc/kojid/runroot.conf'
CONFIG_FILE = '/etc/kojid/plugins/runroot.conf'
class RunRootTask(tasks.BaseTaskHandler):