Browse Source

AMBARI-1765. Enable the Ganglia rrd files location to be configurable when Ganglia is selected as service. (jaimin)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1463337 13f79535-47bb-0310-9956-ffa450edef68
Jaimin Jetly 12 years ago
parent
commit
7024653659
2 changed files with 4 additions and 0 deletions
  1. 3 0
      CHANGES.txt
  2. 1 0
      ambari-web/app/controllers/wizard/step7_controller.js

+ 3 - 0
CHANGES.txt

@@ -544,6 +544,9 @@ Trunk (unreleased changes):
 
 
  BUG FIXES
  BUG FIXES
 
 
+ AMBARI-1765. Enable the Ganglia rrd files location to be configurable
+ when Ganglia is selected as service. (jaimin)
+
  AMBARI-1762. SUSE_Unable to start hive. (swagle)
  AMBARI-1762. SUSE_Unable to start hive. (swagle)
 
 
  AMBARI-1761. Update the DDL update script to modify the table to
  AMBARI-1761. Update the DDL update script to modify the table to

+ 1 - 0
ambari-web/app/controllers/wizard/step7_controller.js

@@ -274,6 +274,7 @@ App.WizardStep7Controller = Em.Controller.extend({
     miscConfigs.findProperty('name', 'pig_user').set('isVisible', this.get('selectedServiceNames').contains('PIG'));
     miscConfigs.findProperty('name', 'pig_user').set('isVisible', this.get('selectedServiceNames').contains('PIG'));
     miscConfigs.findProperty('name', 'sqoop_user').set('isVisible', this.get('selectedServiceNames').contains('SQOOP'));
     miscConfigs.findProperty('name', 'sqoop_user').set('isVisible', this.get('selectedServiceNames').contains('SQOOP'));
     miscConfigs.findProperty('name', 'zk_user').set('isVisible', this.get('selectedServiceNames').contains('ZOOKEEPER'));
     miscConfigs.findProperty('name', 'zk_user').set('isVisible', this.get('selectedServiceNames').contains('ZOOKEEPER'));
+    miscConfigs.findProperty('name', 'rrdcached_base_dir').set('isVisible', this.get('selectedServiceNames').contains('GANGLIA'));
 
 
     this.set('selectedService', this.get('stepConfigs').filterProperty('showConfig', true).objectAt(0));
     this.set('selectedService', this.get('stepConfigs').filterProperty('showConfig', true).objectAt(0));
   },
   },