From bda2f42f9772ab7176eb23c38935de5df3f38422 Mon Sep 17 00:00:00 2001 From: Kriss Andsten Date: Mon, 5 Feb 2018 18:13:52 +0100 Subject: [PATCH] Detect OpenStack guests on RDO based installs, Newton and newer. (#35452) The product string (used as the DMI product name) changed from "OpenStack Nova" to "OpenStack Compute" between Mitaka and Newton in the OpenStack RDO packaging. --- lib/ansible/module_utils/facts/virtual/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/facts/virtual/linux.py b/lib/ansible/module_utils/facts/virtual/linux.py index 4b33f8daf67..0320c560fa7 100644 --- a/lib/ansible/module_utils/facts/virtual/linux.py +++ b/lib/ansible/module_utils/facts/virtual/linux.py @@ -97,7 +97,7 @@ class LinuxVirtual(Virtual): virtual_facts['virtualization_role'] = 'guest' return virtual_facts - if product_name == 'OpenStack Nova': + if product_name in ['OpenStack Compute', 'OpenStack Nova']: virtual_facts['virtualization_type'] = 'openstack' virtual_facts['virtualization_role'] = 'guest' return virtual_facts