Repository: ambari Updated Branches: refs/heads/branch-2.4 f4079a4af -> a389aa5ba
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/a389aa5b Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a389aa5b Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a389aa5b Branch: refs/heads/branch-2.4 Commit: a389aa5ba3fc50cb2ff53bf112c13b5be9f1c2b1 Parents: f4079a4 Author: oleewere <[email protected]> Authored: Fri May 13 12:02:21 2016 +0200 Committer: oleewere <[email protected]> Committed: Fri May 13 15:15:44 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/a389aa5b/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 f5a7b13..53dff5a 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>
