AMBARI-7931. difference between hadoop-env.sh from host and from UI (dlysnichenko)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/06d61c1a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/06d61c1a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/06d61c1a Branch: refs/heads/trunk Commit: 06d61c1adcbda275d03080113dbce50b7c466cf2 Parents: 6dcab61 Author: Lisnichenko Dmitro <[email protected]> Authored: Fri Oct 24 12:50:34 2014 +0300 Committer: Lisnichenko Dmitro <[email protected]> Committed: Fri Oct 24 12:51:59 2014 +0300 ---------------------------------------------------------------------- .../stacks/HDP/2.0.6/services/HDFS/package/scripts/params.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/06d61c1a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/package/scripts/params.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/package/scripts/params.py b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/package/scripts/params.py index 20950b9..d9fa00a 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/package/scripts/params.py +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/package/scripts/params.py @@ -34,11 +34,13 @@ if stack_is_hdp22_or_further: hadoop_libexec_dir = "/usr/hdp/current/hadoop-client/libexec" hadoop_bin = "/usr/hdp/current/hadoop-client/sbin" hadoop_bin_dir = "/usr/hdp/current/hadoop-client/bin" + hadoop_home = "/usr/hdp/current/hadoop-client" else: mapreduce_libs_path = "/usr/lib/hadoop-mapreduce/*" hadoop_libexec_dir = "/usr/lib/hadoop/libexec" hadoop_bin = "/usr/lib/hadoop/sbin" hadoop_bin_dir = "/usr/bin" + hadoop_home = "/usr/lib/hadoop" hadoop_conf_dir = "/etc/hadoop/conf" hadoop_conf_empty_dir = "/etc/hadoop/conf.empty"
