mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 14:54:17 +00:00
18cc2fabe9
Gone latest ...
13 lines
241 B
Bash
13 lines
241 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
|
|
sleep 5
|
|
$CI_PROJECT_DIR/install/bare-metal/google-power-relay.py on $relay
|