fixed but in pulling data from dmesg command, wrong function to use as file for for loop

Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
pull/1349/head
Brian Coca 12 years ago
parent fea5d36417
commit 620aeeb572

@ -444,7 +444,7 @@ class FreeBSDHardware(Hardware):
except IOError:
dmesg_cmd = subprocess.Popen("/sbin/dmesg", shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
dmesg_boot,dmesg_err = dmesg_cmd.communicate()
dmesg_boot = dmesg_cmd.stdout
for line in dmesg_boot.readlines():
if 'CPU:' in line:

Loading…
Cancel
Save