Use kstat for Solaris CPU info

This commit is contained in:
Chris Gardner 2013-05-28 22:40:36 +01:00
parent 50c3cf302c
commit 7d61180034

View file

@ -655,7 +655,7 @@ class SunOSHardware(Hardware):
return self.facts
def get_cpu_facts(self):
rc, out, err = module.run_command("/usr/sbin/kstat cpu_info")
rc, out, err = module.run_command("/usr/bin/kstat cpu_info")
self.facts['processor'] = []
for line in out.split('\n'):
if len(line) < 1: