From 45b7648cb1b302905083f72b71f20541a6720415 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Fri, 21 Jan 2022 16:46:48 -0800 Subject: [PATCH] ci/bare-metal: Drop the BM_POE_USERNAME/PASSWORD env var checks. They're unused since the transition to SNMP in the rpi test farm. Reviewed-by: Christian Gmeiner Part-of: --- .gitlab-ci/bare-metal/poe-powered.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.gitlab-ci/bare-metal/poe-powered.sh b/.gitlab-ci/bare-metal/poe-powered.sh index 3dd7330cd92..8b79e13d27e 100755 --- a/.gitlab-ci/bare-metal/poe-powered.sh +++ b/.gitlab-ci/bare-metal/poe-powered.sh @@ -20,18 +20,6 @@ if [ -z "$BM_POE_ADDRESS" ]; then exit 1 fi -if [ -z "$BM_POE_USERNAME" ]; then - echo "Must set BM_POE_USERNAME in your gitlab-runner config.toml [[runners]] environment" - echo "This is the PoE switch username." - exit 1 -fi - -if [ -z "$BM_POE_PASSWORD" ]; then - echo "Must set BM_POE_PASSWORD in your gitlab-runner config.toml [[runners]] environment" - echo "This is the PoE switch password." - exit 1 -fi - if [ -z "$BM_POE_INTERFACE" ]; then echo "Must set BM_POE_INTERFACE in your gitlab-runner config.toml [[runners]] environment" echo "This is the PoE switch interface where the device is connected."