From 7a275cf77b2cb46bff1855b4d55f11471b023661 Mon Sep 17 00:00:00 2001 From: Ronelle Landy Date: Tue, 29 Nov 2016 09:27:16 -0500 Subject: [PATCH] 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 --- playbooks/baremetal-full-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/baremetal-full-deploy.yml b/playbooks/baremetal-full-deploy.yml index ef2379c98..e9383b222 100644 --- a/playbooks/baremetal-full-deploy.yml +++ b/playbooks/baremetal-full-deploy.yml @@ -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'