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 59B6E58974 for ; Wed, 27 Jan 2016 19:35:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F049E088B; Wed, 27 Jan 2016 19:35:38 +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 3AA23E088B for ; Wed, 27 Jan 2016 19:35:38 +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 299B5340931 for ; Wed, 27 Jan 2016 19:35:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1973CF3 for ; Wed, 27 Jan 2016 19:35:35 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1453922739.366064aa7478a3f8bee31d37e8b1076649264455.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: bin/, / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog bin/eselect.in X-VCS-Directories: / bin/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 366064aa7478a3f8bee31d37e8b1076649264455 X-VCS-Branch: master Date: Wed, 27 Jan 2016 19:35:35 +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: 218c9f68-321f-42e2-a90f-e6031878dd76 X-Archives-Hash: 57724df48b6fadf5b22a3bdca05df2b3 commit: 366064aa7478a3f8bee31d37e8b1076649264455 Author: Ulrich Müller gentoo org> AuthorDate: Wed Jan 27 19:25:39 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Jan 27 19:25:39 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=366064aa Set umask. * bin/eselect.in: Set umask +rx, bug 572348. ChangeLog | 4 ++++ bin/eselect.in | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index ac3b25a..5bb2855 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-01-27 Ulrich Müller + + * bin/eselect.in: Set umask +rx, bug 572348. + 2015-08-26 Ulrich Müller * doc/developer-guide.txt: diff --git a/bin/eselect.in b/bin/eselect.in index 934a10a..c446d46 100755 --- a/bin/eselect.in +++ b/bin/eselect.in @@ -55,6 +55,8 @@ IFS=$' \t\n' shopt -s extglob shopt -s expand_aliases +umask +rx + # Save stderr file descriptor if (( BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] >= 1 || BASH_VERSINFO[0] > 4 )) then