Page MenuHomeVyOS Platform

show_sensors.py
No OneTemporary

Size
765 B
Referenced Files
None
Subscribers
None

show_sensors.py

#!/usr/bin/env python3
import re
import sys
from vyos.util import popen
from vyos.util import DEVNULL
output,retcode = popen("sensors --no-adapter", stderr=DEVNULL)
if retcode == 0:
print (output)
sys.exit(0)
else:
output,retcode = popen("sensors-detect --auto",stderr=DEVNULL)
match = re.search(r'#----cut here----(.*)#----cut here----',output, re.DOTALL)
if match:
for module in match.group(0).split('\n'):
if not module.startswith("#"):
popen("modprobe {}".format(module.strip()))
output,retcode = popen("sensors --no-adapter", stderr=DEVNULL)
if retcode == 0:
print (output)
sys.exit(0)
print ("No sensors found")
sys.exit(1)

File Metadata

Mime Type
text/x-script.python
Expires
Mon, Dec 15, 9:09 PM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3062287
Default Alt Text
show_sensors.py (765 B)

Event Timeline