From b9e83935cbb19d62730d855cf0e1efbff3ee664d Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Fri, 13 Oct 2017 15:21:39 -0400 Subject: [PATCH] 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 Former-commit-id: 4734972ee14f2181c7945154cab8b2a040e45af0 --- installation/ueb-listener/pom.xml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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 + {} + ; + + + + + -- 2.16.6