mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 14:54:17 +00:00
11 lines
166 B
Bash
11 lines
166 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
relay=$1
|
||
|
|
||
|
if [ -z "$relay" ]; then
|
||
|
echo "Must supply a relay arg"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
$CI_PROJECT_DIR/install/bare-metal/google-power-relay.py off $relay
|