Return-Path: X-Original-To: apmail-ambari-commits-archive@www.apache.org Delivered-To: apmail-ambari-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 66C1110609 for ; Thu, 5 Dec 2013 22:22:14 +0000 (UTC) Received: (qmail 61190 invoked by uid 500); 5 Dec 2013 22:22:14 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 61168 invoked by uid 500); 5 Dec 2013 22:22:14 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 61153 invoked by uid 99); 5 Dec 2013 22:22:14 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Dec 2013 22:22:14 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 13E1B82C8BA; Thu, 5 Dec 2013 22:22:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jaimin@apache.org To: commits@ambari.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: AMBARI-3966. Secure cluster: task-controller binary should be owned by the group specified in taskcontroller.cfg. (jaimin) Date: Thu, 5 Dec 2013 22:22:14 +0000 (UTC) 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 Authored: Thu Dec 5 14:21:20 2013 -0800 Committer: Jaimin Jetly 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']