From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 52616158087 for ; Sat, 15 Jan 2022 12:42:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D0502BC01C; Sat, 15 Jan 2022 12:42:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A1D92BC01C for ; Sat, 15 Jan 2022 12:42:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A2D8343350 for ; Sat, 15 Jan 2022 12:42:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99F761BD for ; Sat, 15 Jan 2022 12:42:53 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1642250568.5ec4f783e19a167a9fb40e71b132fc510b040958.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/gssproxy/, net-nds/gssproxy/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nds/gssproxy/files/gssproxy net-nds/gssproxy/gssproxy-0.8.4-r1.ebuild net-nds/gssproxy/gssproxy-0.8.4-r2.ebuild X-VCS-Directories: net-nds/gssproxy/ net-nds/gssproxy/files/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 5ec4f783e19a167a9fb40e71b132fc510b040958 X-VCS-Branch: master Date: Sat, 15 Jan 2022 12:42:53 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 82ef6da9-5232-4aca-83aa-452f102bbcf9 X-Archives-Hash: 9668329cbd382faca8bb102664720d10 commit: 5ec4f783e19a167a9fb40e71b132fc510b040958 Author: Georgy Yakovlev gentoo org> AuthorDate: Sat Jan 15 12:42:05 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sat Jan 15 12:42:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ec4f783 net-nds/gssproxy: create clients dir too, secure permissions Signed-off-by: Georgy Yakovlev gentoo.org> net-nds/gssproxy/files/gssproxy | 3 ++- .../gssproxy/{gssproxy-0.8.4-r1.ebuild => gssproxy-0.8.4-r2.ebuild} | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/net-nds/gssproxy/files/gssproxy b/net-nds/gssproxy/files/gssproxy index 34e4983b384f..83c594402258 100644 --- a/net-nds/gssproxy/files/gssproxy +++ b/net-nds/gssproxy/files/gssproxy @@ -12,5 +12,6 @@ depend() { start_pre() { checkpath -d -m 0755 /var/lib/gssproxy - checkpath -d -m 0755 /var/lib/gssproxy/rcache + checkpath -d -m 0700 /var/lib/gssproxy/clients + checkpath -d -m 0700 /var/lib/gssproxy/rcache } diff --git a/net-nds/gssproxy/gssproxy-0.8.4-r1.ebuild b/net-nds/gssproxy/gssproxy-0.8.4-r2.ebuild similarity index 96% rename from net-nds/gssproxy/gssproxy-0.8.4-r1.ebuild rename to net-nds/gssproxy/gssproxy-0.8.4-r2.ebuild index df211a14dbf6..cdf4adce1dfb 100644 --- a/net-nds/gssproxy/gssproxy-0.8.4-r1.ebuild +++ b/net-nds/gssproxy/gssproxy-0.8.4-r2.ebuild @@ -82,7 +82,10 @@ src_install() { newins examples/mech gssproxy.conf keepdir /var/lib/gssproxy + keepdir /var/lib/gssproxy/clients keepdir /var/lib/gssproxy/rcache + fperms 0700 /var/lib/gssproxy/clients + fperms 0700 /var/lib/gssproxy/rcache # The build installs a bunch of empty dirs, so prune them. find "${ED}" -depth -type d -empty -delete || die