You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|