mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 10:15:54 +00:00
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
|