From 1048c5f1da1b2d15ec389799ca1082fe6a5d2e6d Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Thu, 26 Apr 2018 15:58:05 -0400 Subject: [PATCH] Fix shell permissions Set execute permission on shell script Change-Id: I5b2d94067f8a77fbfb1d2310368f1b1d78a2b834 Issue-ID: SDNC-288 Signed-off-by: Timoney, Dan (dt5972) Former-commit-id: d83d0cdc37715ce9547b8896cc31915f1c5c6da5 --- installation/ansible-server/pom.xml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/installation/ansible-server/pom.xml b/installation/ansible-server/pom.xml index 76ee8aa9..6078a2c4 100644 --- a/installation/ansible-server/pom.xml +++ b/installation/ansible-server/pom.xml @@ -129,7 +129,7 @@ 1.5.0 - change shell permissions + change python permissions process-sources exec @@ -148,6 +148,26 @@ + + change shell permissions + process-sources + + exec + + + /usr/bin/find + + ${basedir}/target/docker-stage/opt/onap/sdnc + -name + *.sh + -exec + chmod + +x + {} + ; + + + -- 2.16.6