mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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>
This commit is contained in:
parent
fea5d36417
commit
620aeeb572
1 changed files with 1 additions and 1 deletions
|
@ -444,7 +444,7 @@ class FreeBSDHardware(Hardware):
|
||||||
except IOError:
|
except IOError:
|
||||||
dmesg_cmd = subprocess.Popen("/sbin/dmesg", shell=True,
|
dmesg_cmd = subprocess.Popen("/sbin/dmesg", shell=True,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
dmesg_boot,dmesg_err = dmesg_cmd.communicate()
|
dmesg_boot = dmesg_cmd.stdout
|
||||||
|
|
||||||
for line in dmesg_boot.readlines():
|
for line in dmesg_boot.readlines():
|
||||||
if 'CPU:' in line:
|
if 'CPU:' in line:
|
||||||
|
|
Loading…
Reference in a new issue