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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5FBF4158086 for ; Mon, 6 Dec 2021 09:38:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95BEFE07A5; Mon, 6 Dec 2021 09:38:28 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7506FE07A5 for ; Mon, 6 Dec 2021 09:38:28 +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 594F5342E93 for ; Mon, 6 Dec 2021 09:38:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC96610C for ; Mon, 6 Dec 2021 09:38:25 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1638783498.5a4cc6f1b6146c6f07883aaa963fca2915abe1c9.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/files/git-daemon-r2.initd X-VCS-Directories: dev-vcs/git/files/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 5a4cc6f1b6146c6f07883aaa963fca2915abe1c9 X-VCS-Branch: master Date: Mon, 6 Dec 2021 09:38:25 +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: 32f02cbb-a020-4eec-9eae-ccaf8b7c7cae X-Archives-Hash: 9787282e54ae0287aeff8ef222404cf8 commit: 5a4cc6f1b6146c6f07883aaa963fca2915abe1c9 Author: Lars Wendler gentoo org> AuthorDate: Mon Dec 6 09:38:02 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Dec 6 09:38:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a4cc6f1 dev-vcs/git: Use /run for pidfile Signed-off-by: Lars Wendler gentoo.org> dev-vcs/git/files/git-daemon-r2.initd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-vcs/git/files/git-daemon-r2.initd b/dev-vcs/git/files/git-daemon-r2.initd index 177458b27366..453fd608363f 100644 --- a/dev-vcs/git/files/git-daemon-r2.initd +++ b/dev-vcs/git/files/git-daemon-r2.initd @@ -2,7 +2,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -pidfile="/var/run/git-daemon.pid" +pidfile="/run/git-daemon.pid" command="/usr/bin/git" command_args="daemon ${GITDAEMON_OPTS}" command_user="${GIT_USER:-nobody}:${GIT_GROUP:-nobody}"