summaryrefslogtreecommitdiff
path: root/src/op_mode/show_sensors.py
blob: 6ae477647df05b15c9d02b04fb445944f18aefed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/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)