diff options
author | Dan Timoney <dtimoney@att.com> | 2019-02-19 15:38:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-19 15:38:43 +0000 |
commit | a794b4f8e543361e237f70aeae6bca2347f8dfee (patch) | |
tree | 9d7666e370df97db14e0bc40b525911c6a8d9caa /ansible-server/pom.xml | |
parent | f8d4769f3aa39c5dd2c22f97bb31dbc4f7a8dee7 (diff) | |
parent | 9bec848ff9fc2c421f25bd0f998f67685f8b53aa (diff) |
Merge "make ansible container backward compatible"
Diffstat (limited to 'ansible-server/pom.xml')
-rw-r--r-- | ansible-server/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible-server/pom.xml b/ansible-server/pom.xml index 662864cb..0b440d23 100644 --- a/ansible-server/pom.xml +++ b/ansible-server/pom.xml @@ -97,6 +97,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/ansible-server</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> |