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

sekikn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new ccd97e995 BIGTOP-4472. Fix invalid permission of hadoop-layout.sh. 
(#1367)
ccd97e995 is described below

commit ccd97e9954562f47a9e46fd6852508e8aa5b9395
Author: Masatake Iwasaki <iwasak...@apache.org>
AuthorDate: Wed Jul 23 09:59:17 2025 +0900

    BIGTOP-4472. Fix invalid permission of hadoop-layout.sh. (#1367)
---
 bigtop-packages/src/common/hadoop/install_hadoop.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bigtop-packages/src/common/hadoop/install_hadoop.sh 
b/bigtop-packages/src/common/hadoop/install_hadoop.sh
index e4b4c0de2..966890f00 100755
--- a/bigtop-packages/src/common/hadoop/install_hadoop.sh
+++ b/bigtop-packages/src/common/hadoop/install_hadoop.sh
@@ -259,7 +259,7 @@ chmod 755 $wrapper
 #libexec
 install -d -m 0755 $PREFIX/$HADOOP_DIR/libexec
 cp -r ${BUILD_DIR}/libexec/* $PREFIX/$HADOOP_DIR/libexec/
-cp ${DISTRO_DIR}/hadoop-layout.sh $PREFIX/$HADOOP_DIR/libexec/
+install -m 0755 ${DISTRO_DIR}/hadoop-layout.sh $PREFIX/$HADOOP_DIR/libexec/
 install -m 0755 ${DISTRO_DIR}/init-hdfs.sh $PREFIX/$HADOOP_DIR/libexec/
 install -m 0755 ${DISTRO_DIR}/init-hcfs.json $PREFIX/$HADOOP_DIR/libexec/
 install -m 0755 ${DISTRO_DIR}/init-hcfs.groovy $PREFIX/$HADOOP_DIR/libexec/

Reply via email to