From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 317841582EF for ; Fri, 28 Feb 2025 13:27:38 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1BF193431EE for ; Fri, 28 Feb 2025 13:27:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5E4761102D0; Fri, 28 Feb 2025 13:27:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 5509E1102D0 for ; Fri, 28 Feb 2025 13:27:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0DE8B3431EE for ; Fri, 28 Feb 2025 13:27:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D39D2731 for ; Fri, 28 Feb 2025 13:27:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1740749225.5ef537105676ebcfbe542ef6d626162fb10c35ba.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/files/, net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/files/ssh-agent.sh net-misc/openssh/openssh-9.9_p2-r1.ebuild net-misc/openssh/openssh-9.9_p2-r2.ebuild X-VCS-Directories: net-misc/openssh/ net-misc/openssh/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5ef537105676ebcfbe542ef6d626162fb10c35ba X-VCS-Branch: master Date: Fri, 28 Feb 2025 13:27:31 +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: cea6f134-bd41-42ef-a87c-76d7c9af94b3 X-Archives-Hash: 515b43ab099222095c9eabb2c5579504 commit: 5ef537105676ebcfbe542ef6d626162fb10c35ba Author: Anna (navi) Figueiredo Gomes vlhl dev> AuthorDate: Fri Feb 28 13:25:01 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 28 13:27:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef53710 net-misc/openssh: fix syntax error in profile.d script Signed-off-by: Anna (navi) Figueiredo Gomes vlhl.dev> Closes: https://github.com/gentoo/gentoo/pull/40811 Signed-off-by: Sam James gentoo.org> net-misc/openssh/files/ssh-agent.sh | 2 +- net-misc/openssh/{openssh-9.9_p2-r1.ebuild => openssh-9.9_p2-r2.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/openssh/files/ssh-agent.sh b/net-misc/openssh/files/ssh-agent.sh index 94d21d8be8e7..fc241019125a 100644 --- a/net-misc/openssh/files/ssh-agent.sh +++ b/net-misc/openssh/files/ssh-agent.sh @@ -1,7 +1,7 @@ # Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License, v2 or later # -if [ -f /run/openrc/softlevel ] && [ -z "$SSH_AUTH_SOCK" ] +if [ -f /run/openrc/softlevel ] && [ -z "$SSH_AUTH_SOCK" ] \ && rc-service --user --exists ssh-agent 2>&1 >/dev/null; then export SSH_AUTH_SOCK="${XDG_RUNTIME_DIR}/ssh-agent.sock" fi diff --git a/net-misc/openssh/openssh-9.9_p2-r1.ebuild b/net-misc/openssh/openssh-9.9_p2-r2.ebuild similarity index 100% rename from net-misc/openssh/openssh-9.9_p2-r1.ebuild rename to net-misc/openssh/openssh-9.9_p2-r2.ebuild