|
@@ -1059,6 +1059,14 @@ 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) {
|
|
|
+ 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) {
|