Adjust start scripts 82/69782/1
authorInstrumental <jonathan.gathman@att.com>
Thu, 4 Oct 2018 02:36:44 +0000 (21:36 -0500)
committerInstrumental <jonathan.gathman@att.com>
Thu, 4 Oct 2018 02:36:48 +0000 (21:36 -0500)
Issue-ID: AAF-517
Change-Id: I487c2e8adb76bc85d54755a650e0a499a6425a8c
Signed-off-by: Instrumental <jonathan.gathman@att.com>
auth/auth-cass/cass_init/cmd.sh
auth/docker/dclean.sh
auth/docker/drun.sh

index afb6677..b3d5292 100644 (file)
@@ -32,7 +32,7 @@ function wait_start {
 function wait_cql {
    status wait for keyspace to be initialized
    for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
-     if [ "`/usr/bin/cqlsh -e 'describe keyspaces' | grep authz`" == "" ]; then
+     if [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)"  ]; then
        break
      else
         echo "Waiting for Keyspaces to be loaded... Sleep 10"
@@ -130,6 +130,8 @@ case "$1" in
 
     # Make sure Keyspace is loaded
     wait_cql 
+
+    # Wait for Data load?
     status ready
   ;;
   onap)
index d83a132..f855067 100644 (file)
@@ -8,14 +8,10 @@ else
     AAF_COMPONENTS="$@"
 fi
 
-docker image rm $ORG/$PROJECT/aaf_agent:${VERSION}
-docker image rm $ORG/$PROJECT/aaf_config:${VERSION}
-docker image rm $ORG/$PROJECT/aaf_core:${VERSION}
-
 echo "Y" | docker container prune
 for AAF_COMPONENT in ${AAF_COMPONENTS}; do
     docker image rm $ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION}
-    if [ "$PREFIX" = "" ]; then
+    if [ "$PREFIX" = "" ]; then
       docker image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION}
       docker image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:latest
     fi
index a8f0393..96405f2 100644 (file)
@@ -67,9 +67,6 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
 
     for A in aaf.osaaf.org $AH_ROOT; do 
        ADD_HOST="$ADD_HOST --add-host=$A:$HOST_IP"
-       for SA in service locate oauth gui fs cm hello; do
-         ADD_HOST="$ADD_HOST --add-host=$SA.$A:$HOST_IP"
-       done
     done
 
     docker run \