Modify playbook switch to match quickstart variable

This playbook is switching on undercloud_type.
In tripleo-quickstart, the value used is 'virtual'
not 'virt'.

Change-Id: I236231b402a1920196cf1c82fd21211b86cd6482
This commit is contained in:
Ronelle Landy 2016-11-29 09:27:16 -05:00
parent c231a1c823
commit 7a275cf77b
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
---
- include: baremetal-prep-virthost.yml
when: undercloud_type == 'virt' and environment_type is defined
when: undercloud_type == 'virtual' and environment_type is defined
- include: ovb-create-stack.yml
when: undercloud_type == 'ovb'