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/04/19 01:46:24 UTC

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

Author: yusaku
Date: Thu Apr 18 23:46:23 2013
New Revision: 1469641

URL: http://svn.apache.org/r1469641
Log:
AMBARI-1982. Disallow editing Hadoop log/PID directories post install. (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=1469641&r1=1469640&r2=1469641&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Thu Apr 18 23:46:23 2013
@@ -269,6 +269,9 @@ Trunk (unreleased changes):
 
  IMPROVEMENTS
 
+ AMBARI-1982. Disallow editing Hadoop log/PID directories post install.
+ (yusaku)
+
  AMBARI-1981. Expose ability to customize the username for running
  Ganglia daemons. (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=1469641&r1=1469640&r2=1469641&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/data/config_properties.js (original)
+++ incubator/ambari/trunk/ambari-web/app/data/config_properties.js Thu Apr 18 23:46:23 2013
@@ -494,6 +494,7 @@ module.exports =
       "displayName": "Hadoop Log Dir Prefix",
       "description": "The parent directory for Hadoop log files.  The HDFS log directory will be ${hadoop_log_dir_prefix} / ${hdfs_user} and the MapReduce log directory will be ${hadoop_log_dir_prefix} / ${mapred_user}.",
       "defaultValue": "/var/log/hadoop",
+      "isReconfigurable": false,
       "displayType": "directory",
       "isOverridable": false,
       "isVisible": true,
@@ -507,6 +508,7 @@ module.exports =
       "displayName": "Hadoop PID Dir Prefix",
       "description": "The parent directory in which the PID files for Hadoop processes will be created.  The HDFS PID directory will be ${hadoop_pid_dir_prefix} / ${hdfs_user} and the MapReduce PID directory will be ${hadoop_pid_dir_prefix} / ${mapred_user}.",
       "defaultValue": "/var/run/hadoop",
+      "isReconfigurable": false,
       "displayType": "directory",
       "isOverridable": false,
       "isVisible": true,