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 D754458973 for ; Thu, 4 Feb 2016 22:03:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B54021C036; Thu, 4 Feb 2016 22:03:01 +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 F134F21C036 for ; Thu, 4 Feb 2016 22:03:00 +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 9FFCE340831 for ; Thu, 4 Feb 2016 22:02:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63F9A8E1 for ; Thu, 4 Feb 2016 22:02:57 +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: <1454623359.59630bedc0360d027b9b7d45a097bd7326e90871.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: 59630bedc0360d027b9b7d45a097bd7326e90871 X-VCS-Branch: pyexec-2.3 Date: Thu, 4 Feb 2016 22:02:57 +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: 097007e8-01f9-4f35-a801-bdc61d0729bc X-Archives-Hash: a659fc4324aa6ba27b1b75e5fc353499 commit: 59630bedc0360d027b9b7d45a097bd7326e90871 Author: Michał Górny gentoo org> AuthorDate: Thu Feb 4 22:02:39 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Feb 4 22:02:39 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=59630bed 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 2680d69..2e857bd 100644 --- a/python.eselect.in +++ b/python.eselect.in @@ -322,6 +322,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 }