Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 37914 invoked from network); 19 Dec 2008 08:53:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Dec 2008 08:53:12 -0000 Received: (qmail 58327 invoked by uid 500); 19 Dec 2008 08:53:24 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 58291 invoked by uid 500); 19 Dec 2008 08:53:24 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 58282 invoked by uid 99); 19 Dec 2008 08:53:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Dec 2008 00:53:24 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Dec 2008 08:53:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B461223888E7; Fri, 19 Dec 2008 00:52:44 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r727981 - in /hadoop/core/branches/branch-0.20/src/contrib/hod: CHANGES.txt bin/hodring Date: Fri, 19 Dec 2008 08:52:44 -0000 To: core-commits@hadoop.apache.org From: yhemanth@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081219085244.B461223888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: yhemanth Date: Fri Dec 19 00:52:44 2008 New Revision: 727981 URL: http://svn.apache.org/viewvc?rev=727981&view=rev Log: Merge -r 727973:727974 from trunk to branch-0.20 to fix HADOOP-4782. Modified: hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring Modified: hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt?rev=727981&r1=727980&r2=727981&view=diff ============================================================================== --- hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt (original) +++ hadoop/core/branches/branch-0.20/src/contrib/hod/CHANGES.txt Fri Dec 19 00:52:44 2008 @@ -8,6 +8,18 @@ IMPROVEMENTS + OPTIMIZATIONS + + BUG FIXES + +Release 0.20.0 - (unreleased changes) + + INCOMPATIBLE CHANGES + + NEW FEATURES + + IMPROVEMENTS + HADOOP-4705. Grant read permissions for files/directories created by HOD. (Peeyush Bishnoi via yhemanth) @@ -15,6 +27,10 @@ BUG FIXES + HADOOP-4782. Revert umask changes in HADOOP-4705 so that + files are still securely created. (Peeyush Bishnoi via + yhemanth) + Release 0.19.0 - 2008-11-18 INCOMPATIBLE CHANGES Modified: hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring?rev=727981&r1=727980&r2=727981&view=diff ============================================================================== --- hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring (original) +++ hadoop/core/branches/branch-0.20/src/contrib/hod/bin/hodring Fri Dec 19 00:52:44 2008 @@ -141,12 +141,6 @@ if __name__ == '__main__': - # pbsdsh sets the umask of the process it launches to 0077. This prevents - # read access to other processes, like chukwa, to read files created by the - # hadoop processes, like the job history files. Resetting the umask to - # address this issue - os.umask(0022) - confDef = definition() confDef.add_defs(defList) hodRingOptions = options(confDef, "./%s [OPTIONS]" % myName, VERSION)