You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by br...@apache.org on 2015/05/05 23:23:25 UTC

hadoop git commit: HADOOP-11898. add nfs3 and portmap starting command in hadoop-daemon.sh in branch-2. Contributed by Brandon Li

Repository: hadoop
Updated Branches:
  refs/heads/branch-2 f95fd5b6d -> a9d12128f


HADOOP-11898. add nfs3 and portmap starting command in hadoop-daemon.sh in branch-2. Contributed by Brandon Li


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/a9d12128
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/a9d12128
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/a9d12128

Branch: refs/heads/branch-2
Commit: a9d12128f320362c5a77d2269a3199e79db9d845
Parents: f95fd5b
Author: Brandon Li <br...@apache.org>
Authored: Tue May 5 14:23:13 2015 -0700
Committer: Brandon Li <br...@apache.org>
Committed: Tue May 5 14:23:13 2015 -0700

----------------------------------------------------------------------
 hadoop-common-project/hadoop-common/CHANGES.txt                   | 3 +++
 hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/a9d12128/hadoop-common-project/hadoop-common/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index c2e5fcb..feb68ae 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -157,6 +157,9 @@ Release 2.8.0 - UNRELEASED
     HADOOP-11904. test-patch.sh goes into an infinite loop on non-maven
     builds (aw)
 
+    HADOOP-11898. add nfs3 and portmap starting command in hadoop-daemon.sh
+    in branch-2 (brandonli)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/a9d12128/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
index 6a4cd69..d2ef1cf 100755
--- a/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
+++ b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
@@ -150,7 +150,7 @@ case $startStop in
     echo starting $command, logging to $log
     cd "$HADOOP_PREFIX"
     case $command in
-      namenode|secondarynamenode|datanode|journalnode|dfs|dfsadmin|fsck|balancer|zkfc)
+      namenode|secondarynamenode|datanode|journalnode|dfs|dfsadmin|fsck|balancer|zkfc|portmap|nfs3)
         if [ -z "$HADOOP_HDFS_HOME" ]; then
           hdfsScript="$HADOOP_PREFIX"/bin/hdfs
         else