From 8746e692c121d7081e5c545de8e98908a95b510b Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 27 Jul 2015 21:44:17 -0400 Subject: [PATCH] changed check to allow for powerpc fixes #11528 --- lib/ansible/module_utils/facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/facts.py b/lib/ansible/module_utils/facts.py index 855a470a083..3928862d057 100644 --- a/lib/ansible/module_utils/facts.py +++ b/lib/ansible/module_utils/facts.py @@ -814,7 +814,7 @@ class LinuxHardware(Hardware): # model name is for Intel arch, Processor (mind the uppercase P) # works for some ARM devices, like the Sheevaplug. - if key == 'model name' or key == 'Processor' or key == 'vendor_id': + if key in ['model name', 'Processor', 'vendor_id', 'cpu', 'Vendor']: if 'processor' not in self.facts: self.facts['processor'] = [] self.facts['processor'].append(data[1].strip())