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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1A8BF1382C5 for ; Mon, 17 May 2021 17:42:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A1E3E078A; Mon, 17 May 2021 17:42:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34C10E078A for ; Mon, 17 May 2021 17:42:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 08590335D73 for ; Mon, 17 May 2021 17:42:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54AB2737 for ; Mon, 17 May 2021 17:42:18 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1621273321.a44841f0657a55467c51c9b04143ca26eb33b3e5.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/exabgp/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/exabgp/files/exabgp.initd net-misc/exabgp/files/exabgp.initd-r1 X-VCS-Directories: net-misc/exabgp/files/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: a44841f0657a55467c51c9b04143ca26eb33b3e5 X-VCS-Branch: master Date: Mon, 17 May 2021 17:42:18 +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: a89c84d5-d067-4abe-8ac5-8de276030a62 X-Archives-Hash: 2de72aebdbd19845666965c447362396 commit: a44841f0657a55467c51c9b04143ca26eb33b3e5 Author: Victor Payno sony com> AuthorDate: Sat May 15 19:26:20 2021 +0000 Commit: Patrick McLean gentoo org> CommitDate: Mon May 17 17:42:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a44841f0 net-misc/exabgp: fix typo in --user assignment in initd scripts Signed-off-by: Victor Payno sony.com> Closes: https://github.com/gentoo/gentoo/pull/20853 Signed-off-by: Patrick McLean gentoo.org> net-misc/exabgp/files/exabgp.initd | 2 +- net-misc/exabgp/files/exabgp.initd-r1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/exabgp/files/exabgp.initd b/net-misc/exabgp/files/exabgp.initd index c3e3d93a494..c3bbcf1247e 100644 --- a/net-misc/exabgp/files/exabgp.initd +++ b/net-misc/exabgp/files/exabgp.initd @@ -8,7 +8,7 @@ command="capsh" command_args=" --groups=${EXABGP_GROUP:=exabgp} - --user=${EXABGP_USER:-exabgp} + --user=${EXABGP_USER:=exabgp} --caps='cap_net_admin+epi cap_setuid+ep-i cap_setgid+ep-i' -- -c \"/usr/bin/exabgp ${EXABGP_ARGS}\"" command_background="yes" diff --git a/net-misc/exabgp/files/exabgp.initd-r1 b/net-misc/exabgp/files/exabgp.initd-r1 index 070a9bf0725..1d942d85025 100644 --- a/net-misc/exabgp/files/exabgp.initd-r1 +++ b/net-misc/exabgp/files/exabgp.initd-r1 @@ -8,7 +8,7 @@ command="capsh" command_args=" --groups=${EXABGP_GROUP:=exabgp} - --user=${EXABGP_USER:-exabgp} + --user=${EXABGP_USER:=exabgp} --caps='cap_net_admin+epi cap_setuid+ep-i cap_setgid+ep-i' -- -c \"/usr/bin/exabgp ${EXABGP_ARGS}\""