diff options
author | David Stilwell <stilwelld@att.com> | 2018-04-26 20:13:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-04-26 20:13:58 +0000 |
commit | 49e275cac824dd6dcd4cbc7ccd5f922419d662f3 (patch) | |
tree | 9b94e6a3267f2eb91ea8affdf7d6eb379a0f681e /installation | |
parent | b954f3e2a2a78e0119ad1ad8976c12e444a62252 (diff) | |
parent | 1048c5f1da1b2d15ec389799ca1082fe6a5d2e6d (diff) |
Merge "Fix shell permissions"
Former-commit-id: c2512ab6e6f6a860ff1433411a69d13e479854e0
Diffstat (limited to 'installation')
-rw-r--r-- | installation/ansible-server/pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
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 @@ <version>1.5.0</version> <executions> <execution> - <id>change shell permissions</id> + <id>change python permissions</id> <phase>process-sources</phase> <goals> <goal>exec</goal> @@ -148,6 +148,26 @@ </arguments> </configuration> </execution> + <execution> + <id>change shell permissions</id> + <phase>process-sources</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable>/usr/bin/find</executable> + <arguments> + <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument> + <argument>-name</argument> + <argument>*.sh</argument> + <argument>-exec</argument> + <argument>chmod</argument> + <argument>+x</argument> + <argument>{}</argument> + <argument>;</argument> + </arguments> + </configuration> + </execution> </executions> </plugin> </plugins> |