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

git commit: AMBARI-3966. Secure cluster: task-controller binary should be owned by the group specified in taskcontroller.cfg. (jaimin)

Updated Branches:
  refs/heads/trunk 9b3c8eca7 -> e9837042d


AMBARI-3966. Secure cluster: task-controller binary should be owned by the group specified in taskcontroller.cfg. (jaimin)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/e9837042
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/e9837042
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/e9837042

Branch: refs/heads/trunk
Commit: e9837042de776c760df113173ec0079595f2f3ec
Parents: 9b3c8ec
Author: Jaimin Jetly <ja...@hortonworks.com>
Authored: Thu Dec 5 14:21:20 2013 -0800
Committer: Jaimin Jetly <ja...@hortonworks.com>
Committed: Thu Dec 5 14:21:32 2013 -0800

----------------------------------------------------------------------
 ambari-agent/src/main/puppet/modules/hdp-hadoop/manifests/init.pp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/e9837042/ambari-agent/src/main/puppet/modules/hdp-hadoop/manifests/init.pp
----------------------------------------------------------------------
diff --git a/ambari-agent/src/main/puppet/modules/hdp-hadoop/manifests/init.pp b/ambari-agent/src/main/puppet/modules/hdp-hadoop/manifests/init.pp
index fdcd4e3..8389bd2 100644
--- a/ambari-agent/src/main/puppet/modules/hdp-hadoop/manifests/init.pp
+++ b/ambari-agent/src/main/puppet/modules/hdp-hadoop/manifests/init.pp
@@ -290,7 +290,7 @@ class hdp-hadoop(
     if ($hdp::params::security_enabled == true) {
       file { "${hdp::params::hadoop_bin}/task-controller":
         owner   => 'root',
-        group   => $hdp::params::mapred_tt_group,
+        group   => $hdp-hadoop::params::mapred_tt_group,
         mode    => '6050',
         require => Hdp-hadoop::Package['hadoop'],
         before  => Anchor['hdp-hadoop::end']