Updated Branches: refs/heads/trunk bfd1fb5c5 -> f092e2a1c
AMBARI-2946. YARN_CLIENT needs to be installed on NAGIOS_SERVER host to allow Oozie smoke test to run properly. (yusaku) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/f092e2a1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/f092e2a1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/f092e2a1 Branch: refs/heads/trunk Commit: f092e2a1cb93ff56163eaea65b3bb545098f3aed Parents: bfd1fb5 Author: Yusaku Sako <[email protected]> Authored: Sat Aug 17 12:50:41 2013 -0700 Committer: Yusaku Sako <[email protected]> Committed: Sat Aug 17 12:50:41 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step8_controller.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/f092e2a1/ambari-web/app/controllers/wizard/step8_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step8_controller.js b/ambari-web/app/controllers/wizard/step8_controller.js index 9645bee..141b1d7 100644 --- a/ambari-web/app/controllers/wizard/step8_controller.js +++ b/ambari-web/app/controllers/wizard/step8_controller.js @@ -1185,7 +1185,6 @@ App.WizardStep8Controller = Em.Controller.extend({ hostNames.pushObject(_masterHost.hostName); }, this); break; - case 'HIVE_CLIENT': //install HIVE client on NAGIOS_SERVER host masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) { @@ -1195,13 +1194,18 @@ App.WizardStep8Controller = Em.Controller.extend({ hostNames.pushObject(_masterHost.hostName); }, this); break; - case 'HCAT': // install HCAT (client) on NAGIOS_SERVER host masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) { hostNames.pushObject(_masterHost.hostName); }, this); break; + case 'YARN_CLIENT': + // install YARN_CLIENT on NAGIOS_SERVER host + masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) { + hostNames.pushObject(_masterHost.hostName); + }, this); + break; } hostNames = hostNames.uniq();
