Merge "Fix typo in ironic prechecks" into stable/pike

This commit is contained in:
Jenkins 2017-09-15 20:09:08 +00:00 committed by Gerrit Code Review
commit 4bbf0ccb36

View File

@ -44,5 +44,5 @@
- name: Looking for 'flat' in tenant network types
local_action: fail msg="'flat' is not in neutron_tenant_network_types [{{ neutron_tenant_network_types }}]"
changed_when: false
when: tenant_network_types.find('flat') == -1
when: neutron_tenant_network_types.find('flat') == -1
run_once: true