This is an automated email from the ASF dual-hosted git repository.
sekikn pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/bigtop.git
The following commit(s) were added to refs/heads/branch-3.5 by this push:
new 23338c902 BIGTOP-4472. Fix invalid permission of hadoop-layout.sh.
(#1367)
23338c902 is described below
commit 23338c9027f602f041c25079ac186fa320454ec1
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Wed Jul 23 09:59:17 2025 +0900
BIGTOP-4472. Fix invalid permission of hadoop-layout.sh. (#1367)
(cherry picked from commit ccd97e9954562f47a9e46fd6852508e8aa5b9395)
---
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/