From 4c00375cb29ce6780f66c158011046fd4679f2e8 Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 20 May 2015 21:10:09 +0200 Subject: [PATCH] networking-configuration: don't check serverstatus --- networking-configuration | 8 -------- 1 file changed, 8 deletions(-) diff --git a/networking-configuration b/networking-configuration index 5813c208c..4b7a85d2b 100755 --- a/networking-configuration +++ b/networking-configuration @@ -33,14 +33,6 @@ main() { config=$(echo $listservers \ | jq -r ".data|map(select(.servername == \"$cac_servername\"))[]") - serverstatus=$(echo $config | jq -r .status) - case $serverstatus in - 'Powered On') : ;; - *) - echo $0: bad server status: $serverstatus >&2 - exit 2 - esac - print_networking_configuraton "$config" }