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 BB35018205 for ; Sun, 12 Jul 2015 09:02:06 +0000 (UTC) Received: (qmail 18487 invoked by uid 500); 12 Jul 2015 09:02:06 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 18459 invoked by uid 500); 12 Jul 2015 09:02:06 -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 18450 invoked by uid 99); 12 Jul 2015 09:02:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 Jul 2015 09:02:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4700CE0F7D; Sun, 12 Jul 2015 09:02:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aonishuk@apache.org To: commits@ambari.apache.org Date: Sun, 12 Jul 2015 09:02:06 -0000 Message-Id: <87966dfe0626426391737226c7b5c1b8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] ambari git commit: AMBARI-12390. Confirm Hosts step fails with umask 027 and non-root ambari-server user (aonishuk) Repository: ambari Updated Branches: refs/heads/branch-2.1 38df799a5 -> f28c2493e refs/heads/trunk f540afa05 -> 99c5ab336 AMBARI-12390. Confirm Hosts step fails with umask 027 and non-root ambari-server user (aonishuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/99c5ab33 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/99c5ab33 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/99c5ab33 Branch: refs/heads/trunk Commit: 99c5ab3369723a1ef56783fbf8b9cea149f828a5 Parents: f540afa Author: Andrew Onishuk Authored: Sun Jul 12 12:01:48 2015 +0300 Committer: Andrew Onishuk Committed: Sun Jul 12 12:01:48 2015 +0300 ---------------------------------------------------------------------- ambari-server/src/main/python/bootstrap.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/99c5ab33/ambari-server/src/main/python/bootstrap.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/python/bootstrap.py b/ambari-server/src/main/python/bootstrap.py index 436d631..95ad4d1 100755 --- a/ambari-server/src/main/python/bootstrap.py +++ b/ambari-server/src/main/python/bootstrap.py @@ -458,6 +458,7 @@ class BootstrapDefault(Bootstrap): target, params.bootdir, self.host_log) result = scp.run() self.host_log.write("\n") + result["exitstatus"] = 0 # ignore not copied *.pyc files with permission denied. return result def getMoveRepoFileWithPasswordCommand(self, targetDir):