You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ol...@apache.org on 2018/04/13 21:32:07 UTC

[ambari] branch trunk updated: [AMBARI-23581] Fix permissions of logsarch/logfeeder scripts for debian packages. (#1005)

This is an automated email from the ASF dual-hosted git repository.

oleewere pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 009972d  [AMBARI-23581] Fix permissions of logsarch/logfeeder scripts for debian packages. (#1005)
009972d is described below

commit 009972da577413fcca336354b7ed96b27c72f8cc
Author: Olivér Szabó <ol...@gmail.com>
AuthorDate: Fri Apr 13 23:32:03 2018 +0200

    [AMBARI-23581] Fix permissions of logsarch/logfeeder scripts for debian packages. (#1005)
    
    * AMBARI-23581. Fix permissions of logsarch/logfeeder scripts for debian packages.
    
    * AMBARI-23581. Use double '*'
---
 ambari-logsearch/ambari-logsearch-logfeeder/build.xml | 4 ++--
 ambari-logsearch/ambari-logsearch-server/build.xml    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ambari-logsearch/ambari-logsearch-logfeeder/build.xml b/ambari-logsearch/ambari-logsearch-logfeeder/build.xml
index c150b55..bde400f 100644
--- a/ambari-logsearch/ambari-logsearch-logfeeder/build.xml
+++ b/ambari-logsearch/ambari-logsearch-logfeeder/build.xml
@@ -45,10 +45,10 @@
     <chmod file="target/package/conf/logfeeder-env.sh" perm="755"/>
     <tar compression="gzip" destfile="target/ambari-logsearch-logfeeder.tgz">
       <tarfileset mode="755" dir="target/package">
-        <include name="*.sh"/>
+        <include name="**/*.sh"/>
       </tarfileset>
       <tarfileset mode="664" dir="target/package">
-        <exclude name="*.sh"/>
+        <exclude name="**/*.sh"/>
       </tarfileset>
     </tar>
   </target>
diff --git a/ambari-logsearch/ambari-logsearch-server/build.xml b/ambari-logsearch/ambari-logsearch-server/build.xml
index c711fe1..293b6ed 100644
--- a/ambari-logsearch/ambari-logsearch-server/build.xml
+++ b/ambari-logsearch/ambari-logsearch-server/build.xml
@@ -60,10 +60,10 @@
     <chmod file="target/package/conf/logsearch-env.sh" perm="755"/>
     <tar compression="gzip" destfile="target/ambari-logsearch-portal.tar.gz">
       <tarfileset mode="755" dir="target/package">
-        <include name="*.sh"/>
+        <include name="**/*.sh"/>
       </tarfileset>
       <tarfileset mode="664" dir="target/package">
-        <exclude name="*.sh"/>
+        <exclude name="**/*.sh"/>
       </tarfileset>
     </tar>
   </target>

-- 
To stop receiving notification emails like this one, please contact
oleewere@apache.org.