diff options
author | tv <tv@shackspace.de> | 2015-05-20 21:34:24 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-20 21:34:24 +0200 |
commit | a2970fcae78b9973c20bdcb78a8a4ec0170aac93 (patch) | |
tree | b01c4227dcd0b3246bce107f67b8afc20e94b9d1 /lib | |
parent | 952ea06725c8bf518955f2e5c42385573c1e6912 (diff) |
lib/cac.sh cac_listservers: return maybe data
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cac.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cac.sh b/lib/cac.sh index 7ed06012a..482e4ddea 100644 --- a/lib/cac.sh +++ b/lib/cac.sh @@ -4,7 +4,7 @@ cac_listservers() {( listservers=$(_cac_get_api_v1 listservers) status=$(echo "$listservers" | jq -r .status) if [ "$status" = ok ]; then - echo "$listservers" + echo "$listservers" | jq -r .data else echo "$0: bad listservers status: $status" >&2 exit 1 |