Page Menu
Home
VyOS Platform
Search
Configure Global Search
Log In
Files
F38742264
show_sensors.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
765 B
Referenced Files
None
Subscribers
None
show_sensors.py
View Options
#!/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
Details
Attached
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)
Attached To
Mode
rVYOSONEX vyos-1x
Attached
Detach File
Event Timeline
Log In to Comment