diff options
author | tv <tv@shackspace.de> | 2015-05-20 21:10:09 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-20 21:10:09 +0200 |
commit | 4c00375cb29ce6780f66c158011046fd4679f2e8 (patch) | |
tree | 2de95bc035ac82a471e070e56606ce71a3ace0ef | |
parent | cb8398ada927b9f37eecd497e00292fa5b0e9caa (diff) |
networking-configuration: don't check serverstatus
-rwxr-xr-x | networking-configuration | 8 |
1 files changed, 0 insertions, 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" } |