You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ab...@apache.org on 2016/06/07 12:58:47 UTC

[2/2] ambari git commit: AMBARI-17064 Add Service Wizard-> Install, Start and Test page: Host row does not have message link. (ababiichuk)

AMBARI-17064 Add Service Wizard-> Install, Start and Test page: Host row does not have message link. (ababiichuk)


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

Branch: refs/heads/trunk
Commit: 308e458d3cd737cc776355b9e8ee6ca11d8f5283
Parents: a657405
Author: ababiichuk <ab...@hortonworks.com>
Authored: Mon Jun 6 19:07:39 2016 +0300
Committer: ababiichuk <ab...@hortonworks.com>
Committed: Tue Jun 7 15:58:29 2016 +0300

----------------------------------------------------------------------
 ambari-web/app/controllers/wizard/step9_controller.js | 2 ++
 ambari-web/app/utils/helper.js                        | 1 +
 2 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/308e458d/ambari-web/app/controllers/wizard/step9_controller.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/wizard/step9_controller.js b/ambari-web/app/controllers/wizard/step9_controller.js
index 015cb84..41ae920 100644
--- a/ambari-web/app/controllers/wizard/step9_controller.js
+++ b/ambari-web/app/controllers/wizard/step9_controller.js
@@ -421,6 +421,8 @@ App.WizardStep9Controller = Em.Controller.extend(App.ReloadPopupMixin, {
             return role + Em.I18n.t('installer.step9.serviceStatus.stop.failed');
         }
         break;
+      case 'CUSTOM_COMMAND':
+        role = App.format.commandDetail(task.command_detail, task.request_input);
       case 'EXECUTE' :
       case 'SERVICE_CHECK' :
         switch (task.status) {

http://git-wip-us.apache.org/repos/asf/ambari/blob/308e458d/ambari-web/app/utils/helper.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/helper.js b/ambari-web/app/utils/helper.js
index 7ab131c..3fd7f4a 100644
--- a/ambari-web/app/utils/helper.js
+++ b/ambari-web/app/utils/helper.js
@@ -518,6 +518,7 @@ App.format = {
     'UPGRADE': 'Upgrade',
     'RESTART': 'Restart',
     'SERVICE_CHECK': 'Check',
+    'SET_KEYTAB': 'Set Keytab:',
     'Excluded:': 'Decommission:',
     'Included:': 'Recommission:'
   },