From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 592A458976 for ; Sat, 6 Feb 2016 09:00:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14CF621C00D; Sat, 6 Feb 2016 09:00:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54DD621C00B for ; Sat, 6 Feb 2016 09:00:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F5E0340A9C for ; Sat, 6 Feb 2016 09:00:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1F5C8F2 for ; Sat, 6 Feb 2016 09:00:38 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1454704590.808be74d51901c942fce1ddd0bb69d910b2a5d9c.mgorny@gentoo> Subject: [gentoo-commits] proj/eselect-python:master commit in: / X-VCS-Repository: proj/eselect-python X-VCS-Files: python.eselect.in X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 808be74d51901c942fce1ddd0bb69d910b2a5d9c X-VCS-Branch: master Date: Sat, 6 Feb 2016 09:00:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6212eb47-4103-4225-be88-6ad5fb3d8630 X-Archives-Hash: 43c5cc3a67dac5771cf201a5e10a0c43 Message-ID: <20160206090038.GBOtwzmldPqP0DqXPNDAoO3zCMzk-pSWfCIV-H13tmg@z> commit: 808be74d51901c942fce1ddd0bb69d910b2a5d9c Author: Michał Górny gentoo org> AuthorDate: Thu Feb 4 22:02:39 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 5 20:36:30 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=808be74d Set open enough umask before writing updates python.eselect.in | 1 + 1 file changed, 1 insertion(+) diff --git a/python.eselect.in b/python.eselect.in index aa4eaa7..d84f1ef 100644 --- a/python.eselect.in +++ b/python.eselect.in @@ -336,6 +336,7 @@ do_set() { # need to do this outta loop in case no pref matches prefs=( "${prefs[@]:0:target_idx}" "${target}" "${prefs[@]:target_idx}" ) + umask 022 write_preferences "${prefs[@]}" post_update }