From: Dan Timoney Date: Fri, 13 Oct 2017 19:21:39 +0000 (-0400) Subject: Fix ueb-listener permissions X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=4734972ee14f2181c7945154cab8b2a040e45af0;p=sdnc%2Foam.git Fix ueb-listener permissions Fix permissions on ueb-listener start script to allow docker container to start properly. Change-Id: I5c559644e26dddadebe515616ca5c1df8502f33a Issue-ID: SDNC-116 Signed-off-by: Dan Timoney --- diff --git a/installation/ueb-listener/pom.xml b/installation/ueb-listener/pom.xml index 722840b1..ac602c3a 100644 --- a/installation/ueb-listener/pom.xml +++ b/installation/ueb-listener/pom.xml @@ -155,7 +155,36 @@ + + exec-maven-plugin + org.codehaus.mojo + 1.5.0 + + + + + change shell permissions + process-sources + + exec + + + /usr/bin/find + + ${basedir}/target/docker-stage/opt/onap/sdnc + -name + *.sh + -exec + chmod + +x + {} + ; + + + + +