Service required changed startup 57/41357/1 v2.1.0
authorInstrumental <jcgmisc@stl.gathman.org>
Fri, 6 Apr 2018 10:27:41 +0000 (05:27 -0500)
committerInstrumental <jcgmisc@stl.gathman.org>
Fri, 6 Apr 2018 10:27:58 +0000 (05:27 -0500)
Issue-ID: AAF-211
Change-Id: Id4101ca0e59c5a2a3deaf703dc8fdd07183f3b4d
Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
auth/auth-service/pom.xml
auth/docker/drun.sh
cadi/core/src/main/java/org/onap/aaf/cadi/taf/cert/X509Taf.java

index 1659285..3a99b97 100644 (file)
                                                        <mainClass>org.onap.aaf.auth.service.AAF_Service</mainClass>
                                                        <name>service</name>
                                                        <commandLineArguments>
-                                                               <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.service.props</commandLineArgument>
+                                                               <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.service.props</commandLineArgument>
                                                                <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/service</commandLineArgument>
                                                        </commandLineArguments>
                                                </program>
index 775c0c4..179a7da 100644 (file)
@@ -2,7 +2,7 @@
 . d.props
 
 if [ "$1" == "" ]; then
-  AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`
+  AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
 else
   AAF_COMPONENTS=$1
 fi
@@ -18,19 +18,15 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
                "fs") PORTMAP="80:8096";;
        esac
        
-#      if [ "`docker container ls | grep aaf_$AAF_COMPONENT:$VERSION`" == "" ]; then
-               echo Starting aaf_$AAF_COMPONENT...
-               docker run  \
-                 -d \
-                 --name aaf_$AAF_COMPONENT \
-                 --hostname="$HOSTNAME" \
-                 --add-host="$CASS_HOST" \
-                 --publish $PORTMAP \
-                 --mount type=bind,source=$CONF_ROOT_DIR,target=/opt/app/osaaf \
-                 --link aaf_cass:cassandra \
-                 ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
-#      else
-         #echo docker container start -ia aaf_$AAF_COMPONENT
-#      fi
+       echo Starting aaf_$AAF_COMPONENT...
+       docker run  \
+         -d \
+         --name aaf_$AAF_COMPONENT \
+         --hostname="$HOSTNAME" \
+         --add-host="$CASS_HOST" \
+         --publish $PORTMAP \
+         --mount type=bind,source=$CONF_ROOT_DIR,target=/opt/app/osaaf \
+         --link aaf_cass:cassandra \
+         ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
 done
 #                --add-host="$HOSTNAME:$HOST_IP" \
index b5ed7ad..4411a85 100644 (file)
@@ -130,7 +130,8 @@ public class X509Taf implements HttpTaf {
                        if(certarr!=null && certarr.length>0) {
                                si.checkClientTrusted(certarr);
                                // Note: If the Issuer is not in the TrustStore, it's not added to the Cert list
-                               if(cadiIssuers.contains(certarr[0].getIssuerDN().toString())) {
+                               String issuer = certarr[0].getIssuerDN().toString();
+                               if(cadiIssuers.contains(issuer)) {
                                        String subject = certarr[0].getSubjectDN().getName();
                                        // avoiding extra object creation, since this is validated EVERY transaction with a Cert
                                        int at = subject.indexOf('@');