mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
18cc2fabe9
Gone latest ...
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
|