You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sw...@apache.org on 2013/05/07 22:58:38 UTC

svn commit: r1480075 - in /incubator/ambari/trunk: CHANGES.txt ambari-agent/src/main/puppet/modules/hdp/manifests/init.pp ambari-agent/src/main/puppet/modules/hdp/manifests/params.pp

Author: swagle
Date: Tue May  7 20:58:38 2013
New Revision: 1480075

URL: http://svn.apache.org/r1480075
Log:
AMBARI-2076. DataNode install failed with custom users. (swagle)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/init.pp
    incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/params.pp

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1480075&r1=1480074&r2=1480075&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue May  7 20:58:38 2013
@@ -830,6 +830,8 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2076. DataNode install failed with custom users. (swagle)
+
  AMBARI-2085. UI allows user to set empty value for configs in
  Advanced category. (jaimin)
 

Modified: incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/init.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/init.pp?rev=1480075&r1=1480074&r2=1480075&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/init.pp (original)
+++ incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/init.pp Tue May  7 20:58:38 2013
@@ -33,11 +33,6 @@ class hdp(
     ensure => present
   }
 
-  group { $hdp::params::mapred_group :
-    ensure => present
-  }
-
-
  ## Port settings
   if has_key($configuration, 'hdfs-site') {
     $hdfs-site = $configuration['hdfs-site']

Modified: incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/params.pp
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/params.pp?rev=1480075&r1=1480074&r2=1480075&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/params.pp (original)
+++ incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp/manifests/params.pp Tue May  7 20:58:38 2013
@@ -212,7 +212,6 @@ class hdp::params()
   $mapreduce_jobhistory_done_dir = hdp_default("mapred-site/mapreduce.jobhistory.done-dir","/mr-history/done")
   
   $user_group = hdp_default("user_group","hadoop")
-  $mapred_group = hdp_default("mapred_group","hadoop")
 
   $ganglia_enabled = hdp_default("ganglia_enabled",true)