diff options
-rw-r--r-- | debian/control | 1 | ||||
-rw-r--r-- | op-mode-definitions/show-environment.xml | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/debian/control b/debian/control index 85dd919a5..20423aee1 100644 --- a/debian/control +++ b/debian/control @@ -45,6 +45,7 @@ Depends: python3, wide-dhcpv6-client, bmon, hvinfo, + lm-sensors, file, lsscsi, pciutils, diff --git a/op-mode-definitions/show-environment.xml b/op-mode-definitions/show-environment.xml new file mode 100644 index 000000000..88e1718aa --- /dev/null +++ b/op-mode-definitions/show-environment.xml @@ -0,0 +1,21 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="environment"> + <properties> + <help>Show current system environmental conditions</help> + </properties> + <children> + <leafNode name="sensors"> + <properties> + <help>Show hardware monitoring results</help> + </properties> + <!-- Linux always adds "hypervisor" to CPU flags --> + <command>if ! grep -q hypervisor /proc/cpuinfo; then /usr/bin/sensors --no-adapter; else echo "VyOS running under hypervisor, no sensors available"; fi</command> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |