mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-01-23 14:13:42 +08:00
90f8be9bda
In order to turn on/off through SNMP DuT under PoE switch, the SNMP key in some vendors don't directly use the interface number, but a number shifted a base number. Define this base number as BM_POE_BASE environment in the runner. Reviewed-by: Jose Maria Casanova Crespo <jmcasanova@igalia.com> Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29306>
17 lines
408 B
Bash
Executable File
17 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$BM_POE_INTERFACE" ]; then
|
|
echo "Must supply the PoE Interface to power up"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$BM_POE_ADDRESS" ]; then
|
|
echo "Must supply the PoE Switch host"
|
|
exit 1
|
|
fi
|
|
|
|
SNMP_KEY="SNMPv2-SMI::mib-2.105.1.1.1.3.1.$((${BM_POE_BASE:-0} + BM_POE_INTERFACE))"
|
|
SNMP_OFF="i 2"
|
|
|
|
flock /var/run/poe.lock -c "snmpset -v2c -r 3 -t 30 -cmesaci $BM_POE_ADDRESS $SNMP_KEY $SNMP_OFF"
|