diff options
author | Aaron Hay <ah415j@att.com> | 2018-04-13 18:36:35 +0000 |
---|---|---|
committer | Aaron Hay <ah415j@att.com> | 2018-04-13 20:28:06 +0000 |
commit | 32818c887d29aedceebaf4afe466e650e3e793ae (patch) | |
tree | d3251e54c0adc44a9c06b6e92905421e879588b9 /test/csit/plans/appc/healthcheck/bundle_query.sh | |
parent | 5dc20735f510020fc422dac0a77a3c1e2dc3d470 (diff) |
Updating APPC CSIT for Nitrogen ODL
The use of -u karaf is no longer supported by the ODL client command version.
The APIDOC credentials have been modified with the Nitrogen ODL version.
Change-Id: I127a1db019b7fb92554045ebe1b4b8a0c562994c
Issue-ID: APPC-851
Signed-off-by: Aaron Hay <ah415j@att.com>
Diffstat (limited to 'test/csit/plans/appc/healthcheck/bundle_query.sh')
-rwxr-xr-x | test/csit/plans/appc/healthcheck/bundle_query.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/csit/plans/appc/healthcheck/bundle_query.sh b/test/csit/plans/appc/healthcheck/bundle_query.sh index a85bf31c4..3801d0a12 100755 --- a/test/csit/plans/appc/healthcheck/bundle_query.sh +++ b/test/csit/plans/appc/healthcheck/bundle_query.sh @@ -18,10 +18,10 @@ SCRIPTS="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" echo $SCRIPTS -num_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client -u karaf bundle:list | tail -1 | cut -d\| -f1) -#num_failed_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client -u karaf bundle:list | grep Failure | wc -l) -num_failed_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client -u karaf bundle:list | grep Failure | wc -l) -failed_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client -u karaf bundle:list | grep Failure) +num_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1) +#num_failed_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l) +num_failed_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l) +failed_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Failure) echo "There are $num_failed_bundles failed bundles out of $num_bundles installed bundles." |