From e42604132e2f6ecabae33725975670380dd2bbc4 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 17 Aug 2017 01:03:14 -0500 Subject: [PATCH] Correct Ansible deprecation warning this include is dynamic and needs to be marked as such else it creates the following error: http://paste.openstack.org/show/618629 Change-Id: I6d9133c727c7b195eba716cfaf0fa4d7ee605bf5 Signed-off-by: Kevin Carter --- tasks/nova_install.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/nova_install.yml b/tasks/nova_install.yml index 0050a7d6..b9d73a25 100644 --- a/tasks/nova_install.yml +++ b/tasks/nova_install.yml @@ -15,6 +15,7 @@ - name: Setup powervm repository include: nova_install_apt_powervm.yml + static: no when: - "'nova_compute' in group_names" - "nova_virt_type == 'powervm'"