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 B7F1E58974 for ; Fri, 5 Feb 2016 19:56:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB82921C028; Fri, 5 Feb 2016 19:56:17 +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 3CE3721C03D for ; Fri, 5 Feb 2016 19:56:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0EC22340A99 for ; Fri, 5 Feb 2016 19:56:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C035B8F4 for ; Fri, 5 Feb 2016 19:56:12 +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: <1454702051.488a692b45d1279f0c8955965d809621bf4388b5.mgorny@gentoo> Subject: [gentoo-commits] proj/eselect-python:pyexec-2.3 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: 488a692b45d1279f0c8955965d809621bf4388b5 X-VCS-Branch: pyexec-2.3 Date: Fri, 5 Feb 2016 19:56:12 +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: 056f98ad-5558-4af6-8a96-ddf7fff4e77d X-Archives-Hash: c06abac952dec25eebf2988c231f34a2 commit: 488a692b45d1279f0c8955965d809621bf4388b5 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 19:54:11 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=488a692b 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 ee79262..c222460 100644 --- a/python.eselect.in +++ b/python.eselect.in @@ -327,6 +327,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 }