Solaris fact fix (#24793)

* ensure locale for solaris fact gathering

fixes issue with locale interfering with proper reading of decimals
fixes #24542

* fixed typoe
This commit is contained in:
Brian Coca 2017-05-24 14:31:38 -04:00 committed by GitHub
parent 61060b66c2
commit e558ec19cd

View file

@ -1618,6 +1618,7 @@ class SunOSHardware(Hardware):
platform = 'SunOS'
def populate(self):
self.module.run_command_environ_update = {'LANG': 'C', 'LC_ALL': 'C', 'LC_NUMERIC': 'C'}
self.get_cpu_facts()
self.get_memory_facts()
self.get_dmi_facts()