From a48a047afda393456357151f8ed7a30cc95a85d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20P=C3=A1ral?= Date: Wed, 11 Jul 2018 14:27:18 +0200 Subject: [PATCH] taskotron trigger: disable critpath_filepath on dev --- roles/taskotron/taskotron-trigger/templates/trigger.cfg.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/taskotron/taskotron-trigger/templates/trigger.cfg.j2 b/roles/taskotron/taskotron-trigger/templates/trigger.cfg.j2 index 73f48feccb..eb72757317 100644 --- a/roles/taskotron/taskotron-trigger/templates/trigger.cfg.j2 +++ b/roles/taskotron/taskotron-trigger/templates/trigger.cfg.j2 @@ -19,5 +19,10 @@ deployment_type = stg #} [koji_build_completed] +{% if deployment_type in ['stg', 'prod'] %} critpath_filepath = {{ trigger_critpath_file }} +{% else %} +; critpath_filepath = {{ trigger_critpath_file }} +critpath_filepath = +{% endif %}