diff options
author | tv <tv@krebsco.de> | 2015-05-20 21:10:09 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2015-05-20 21:10:09 +0200 |
commit | 25d4a34da8b9573fd3ff162645a2ebe6c57e149b (patch) | |
tree | 2de95bc035ac82a471e070e56606ce71a3ace0ef | |
parent | e145d2273a7a7e95dd799affdcca9739866b0573 (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 5813c20..4b7a85d 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" } |