Correct AllNodesDeploySteps depends_on

This is wrong atm, it should loop to create a list for the depends_on
not multiple depends_on statements.

Note this was first corrected in https://review.openstack.org/#/c/330659/
but we need it as a standalone patch that can be backported.

Change-Id: I4d1d6346f2147e573fc0900038f1ad1d782e75ee
Closes-Bug: #1642069
(cherry picked from commit 8fe71c0888)
This commit is contained in:
Steven Hardy 2016-11-15 22:49:18 +00:00 committed by Julie Pichon
parent 14d1e78ff2
commit 74517c0125
1 changed files with 1 additions and 1 deletions

View File

@ -542,8 +542,8 @@ resources:
# Post deployment steps for all roles
AllNodesDeploySteps:
type: OS::TripleO::PostDeploySteps
{% for role in roles %}
depends_on:
{% for role in roles %}
- {{role.name}}AllNodesDeployment
{% endfor %}
properties: