mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-02 22:54:05 +08:00
5941fc8ccd
Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21977>
11 lines
194 B
Bash
Executable File
11 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
relay=$1
|
|
|
|
if [ -z "$relay" ]; then
|
|
echo "Must supply a relay arg"
|
|
exit 1
|
|
fi
|
|
|
|
"$CI_PROJECT_DIR"/install/bare-metal/eth008-power-relay.py "$ETH_HOST" "$ETH_PORT" off "$relay"
|