aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci/bare-metal/google-power-up.sh
blob: f0c054162a214953351947da2a66228e5741133d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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