Repository: ambari Updated Branches: refs/heads/trunk 1dccde219 -> f5cfd9c4e
AMBARI-16640. jdeb does not preserve permissions for Solr deb package (oleewere) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/f5cfd9c4 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f5cfd9c4 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f5cfd9c4 Branch: refs/heads/trunk Commit: f5cfd9c4e6bc73969fca8bd85dede3f8a92ad081 Parents: 1dccde2 Author: oleewere <[email protected]> Authored: Fri May 13 12:02:21 2016 +0200 Committer: oleewere <[email protected]> Committed: Fri May 13 15:10:57 2016 +0200 ---------------------------------------------------------------------- ambari-logsearch/ambari-logsearch-assembly/pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/f5cfd9c4/ambari-logsearch/ambari-logsearch-assembly/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-logsearch/ambari-logsearch-assembly/pom.xml b/ambari-logsearch/ambari-logsearch-assembly/pom.xml index 90504e6..c664ffb 100644 --- a/ambari-logsearch/ambari-logsearch-assembly/pom.xml +++ b/ambari-logsearch/ambari-logsearch-assembly/pom.xml @@ -320,6 +320,23 @@ <group>root</group> <prefix>${solr.mapping.path}</prefix> </mapper> + <excludes> + bin/**,server/scripts/** + </excludes> + </data> + <data> + <src>${project.build.directory}/solr</src> + <type>directory</type> + <mapper> + <type>perm</type> + <user>root</user> + <group>root</group> + <filemode>755</filemode> + <prefix>${solr.mapping.path}</prefix> + </mapper> + <includes> + bin/**,server/scripts/** + </includes> </data> </dataSet> </configuration>
