aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2016-11-03 13:54:18 -0400
committerMichele Baldessari <michele@acksyn.org>2017-03-29 10:19:41 +0200
commit1ca3c2c4b0b47958e9706aca6a8161f70f70b84d (patch)
tree593c7c13a953a5968c150ddd158405d629f9e9e1 /tools
parent0ae9d9b346f1c5d7e29b8f281474577eca260670 (diff)
Qpid dispatch router composable role
Note: since it replaces rabbitmq, in order to aim for the smallest amount of changes the service_name is called 'rabbitmq' so all the other services do not need additional logic to use qdr. Depends-On: Idecbbabdd4f06a37ff0cfb34dc23732b1176a608 Change-Id: I27f01d2570fa32de91ffe1991dc873cdf2293dbc
Diffstat (limited to 'tools')
-rwxr-xr-xtools/yaml-validate.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/yaml-validate.py b/tools/yaml-validate.py
index 5ff6f134..5669a8af 100755
--- a/tools/yaml-validate.py
+++ b/tools/yaml-validate.py
@@ -212,8 +212,10 @@ def validate(filename):
% filename)
return 1
+ # qdr aliases rabbitmq service to provide alternative messaging backend
if (filename.startswith('./puppet/services/') and
- filename != './puppet/services/services.yaml'):
+ filename not in ['./puppet/services/services.yaml',
+ './puppet/services/qdr.yaml']):
retval = validate_service(filename, tpl)
if (filename.startswith('./docker/services/') and