From 1159ee33416752526f394d072d397ad1905194a9 Mon Sep 17 00:00:00 2001 From: Matt Thompson Date: Wed, 27 Jan 2016 10:23:44 +0000 Subject: [PATCH] Always include nova_virt_detect.yml Currently, if you run the os-nova-install.yml playbook with the nova-config or nova-install tags, the run will fail as nova_virt_type is not defined anywhere. This commit updates os_nova/tasks/main.yml by adding the always tag so that nova_virt_detect.yml is always included. Change-Id: Id0fdd12aecc63c066da985fbb058cb85926b2ff3 --- tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index b647d07f..1bf99090 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -16,7 +16,8 @@ - include: nova_virt_detect.yml when: nova_virt_type is not defined tags: - nova-virt-detect + - always + - nova-virt-detect - include: nova_pre_install.yml - include: nova_install.yml