You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2013/03/14 01:04:23 UTC

svn commit: r1456287 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/data/config_properties.js

Author: yusaku
Date: Thu Mar 14 00:04:22 2013
New Revision: 1456287

URL: http://svn.apache.org/r1456287
Log:
AMBARI-1630. Expose HUE config parameters through Ambari Web. (yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/data/config_properties.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1456287&r1=1456286&r2=1456287&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Thu Mar 14 00:04:22 2013
@@ -122,6 +122,8 @@ Trunk (unreleased changes):
 
  IMPROVEMENTS
 
+ AMBARI-1630. Expose HUE config parameters through Ambari Web. (yusaku)
+
  AMBARI-1595. Add Oracle option for Hive Metastore during Ambari
  cluster install. (Xi Wang via yusaku)
 

Modified: incubator/ambari/trunk/ambari-web/app/data/config_properties.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/data/config_properties.js?rev=1456287&r1=1456286&r2=1456287&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/data/config_properties.js (original)
+++ incubator/ambari/trunk/ambari-web/app/data/config_properties.js Thu Mar 14 00:04:22 2013
@@ -453,7 +453,6 @@ module.exports =
       "description": "Directory on the local filesystem where the Secondary NameNode should store the temporary images to merge",
       "defaultValue": "",
       "defaultDirectory": "/hadoop/hdfs/namesecondary",
-      "isReconfigurable": false,
       "displayType": "directory",
       "isOverridable": false,
       "isVisible": true,
@@ -2422,7 +2421,34 @@ module.exports =
       "domain": "global",
       "serviceName": "MISC",
       "category": "General"
+    },
+    {
+      "id": "puppet var",
+      "name": "hue_pid_dir",
+      "displayName": "HUE Log Dir",
+      "description": "Directory for HUE logs",
+      "defaultValue": "/var/log/hue",
+      "isReconfigurable": false,
+      "displayType": "directory",
+      "isOverridable": false,
+      "isVisible": true,
+      "domain": "global",
+      "serviceName": "HUE",
+      "category": "Advanced"
+    },
+    {
+      "id": "puppet var",
+      "name": "hue_log_dir",
+      "displayName": "HUE PID Dir",
+      "description": "Directory in which the pid files for HUE processes will be created",
+      "defaultValue": "/var/run/hue",
+      "isReconfigurable": false,
+      "displayType": "directory",
+      "isOverridable": false,
+      "isVisible": true,
+      "domain": "global",
+      "serviceName": "HUE",
+      "category": "Advanced"
     }
-
   ]
 };