From 158d689b962e77472048f91bda67efe0815e2248 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Thu, 4 Jun 2015 00:17:54 +0000 Subject: [PATCH] Add system-config to puppet_re in zuul parameters This was missed since it relied on default-equivalent behavior until we switched the node type for the project yesterday. Change-Id: Id3f75916f28c8a655c5bb89fee58c22d6f5c991a Co-Authored-By: Jens Rosenboom --- zuul/openstack_functions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zuul/openstack_functions.py b/zuul/openstack_functions.py index 89d0bc177b..09710a2e5c 100644 --- a/zuul/openstack_functions.py +++ b/zuul/openstack_functions.py @@ -95,7 +95,8 @@ def set_node_options(item, job, params, default): f21_re = r'^.*-f21.*$' tripleo_re = r'^.*-tripleo.*$' devstack_re = r'^.*-dsvm.*$' - puppetunit_re = r'^gate-puppet-.*-puppet-(lint|syntax|unit).*$' + puppetunit_re = ( + r'^gate-(puppet-.*|system-config)-puppet-(lint|syntax|unit).*$') # jobs run on the proposal worker if re.match(proposal_re, job.name) or re.match(pypi_re, job.name): reusable_node(item, job, params)