From 4c1700065b11ed71ab053ac0e1c9c9079ccce7dd Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 11 Jul 2017 09:15:36 +0200 Subject: [PATCH] Set the tickets and docs folder to None as we won't use them --- roles/distgit/pagure/templates/pagure.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/distgit/pagure/templates/pagure.cfg b/roles/distgit/pagure/templates/pagure.cfg index 655dae17f1..bf138b5234 100644 --- a/roles/distgit/pagure/templates/pagure.cfg +++ b/roles/distgit/pagure/templates/pagure.cfg @@ -86,13 +86,15 @@ WEBHOOK = True GIT_FOLDER = '/srv/git/repositories' ### Folder containing the docs repos -DOCS_FOLDER = '/srv/git/repositories/docs' +#DOCS_FOLDER = '/srv/git/repositories/docs' +DOCS_FOLDER = None ### Folder containing the pull-requests repos REQUESTS_FOLDER = '/srv/git/repositories/requests' ### Folder containing the tickets repos -TICKETS_FOLDER = '/srv/git/repositories/tickets' +#TICKETS_FOLDER = '/srv/git/repositories/tickets' +TICKETS_FOLDER = None ### Folder containing the clones of the remotes git repo REMOTE_GIT_FOLDER = '/srv/git/remotes'